body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.container-logo {
    padding: 20px;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.panel {
    margin-top: 20px;
    padding: 20px;
    background-color: #fafafa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.status-container {
    margin-top: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    display: inline-block;
    padding: .5em;
    border-radius: 100%;
    position: relative;
    /* top: 2px; */
    margin: 0 5px;
}