body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #87CEEB, #1E90FF);
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 400px;
}

h1 {
    font-size: 28px;
    margin-bottom: 30px; /* Más espacio debajo del título */
    color: #333;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px; /* Más espacio debajo del subtítulo */
}

/* Contenedor del status */
.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacio entre el texto y el círculo */
    margin-bottom: 50px; /* Más espacio debajo del status */
}

/* Texto "Status:" */
.status-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Círculo rojo */
.status-circle {
    width: 20px;
    height: 20px;
    background-color: #ff0000; /* Color rojo */
    border-radius: 50%; /* Hace que sea un círculo */
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex: 1;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.blue {
    background-color: #007bff;
}

.red {
    background-color: #dc3545;
}