/* Estilos generales */
/* Fondo de la página */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../images/fondo.jpg') no-repeat center center fixed;
    background-size: cover; /* Asegura que la imagen se escale correctamente */
    color: #fff; /* Cambia el color del texto para que sea legible sobre el fondo */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor principal */
.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background: rgba(59, 52, 52, 0.8); /* Fondo semi-transparente para resaltar el contenido */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Texto */
p, h1 {
    color: #fff;
}

/* Botón para retroceder */
.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #cf3232;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back:hover {
    background-color: #388E3C;
    transform: scale(1.05);
}


/* Título */
h1 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Texto y etiquetas */
p {
    margin: 10px 0;
    font-size: 1rem;
}

strong {
    color: #ffffff;
}

/* Resaltar los tiempos */
.time-highlight {
    font-size: 1.2rem;
    color: #D32F2F;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

/* Código QR */
img {
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 150px;
    display: block;
}

/* Estructura de botones o enlaces */
button, a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

button:hover, a:hover {
    background-color: #388E3C;
}

/* Footer fijo (opcional) */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}
/* Botón para retroceder */
.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #2196F3;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back:hover {
    background-color: #1976D2;
    transform: scale(1.05);
}
