.container {
    background-image: url("../img/fondo_inv.jpg");
    background-size: cover;
    background-position: center;
    height: auto;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    }
    
    h1.invtext {
    font-family: "Dancing Script", serif;
    font-size: 45px;
    text-shadow: 0 0 10px #1eb5fa, 0 0 20px #1eb5fa;
    color: #207bd5;
    text-align: center;
    margin-bottom: 20px;
    }
    
    label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    }
    
    input[type="text"],
    textarea {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    }
    
    input[type="radio"] {
    margin-right: 5px;
    }
    
    button {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    }
    
    button:hover {
    background-color: #00509e;
    }
    
    #message,
    #newMessage,
    #QRmessage {
    color: #ff0000;
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    }
    
    .hidden {
    display: none;
    }
    
    #qrcode {
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    }
    
    .attendance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    }
    
    .attendance-container label {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    }
    
    .attendance-container input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
    }
    
    .circles-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    }
    
    .circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #666;
    background-color: transparent;
    transition: background 0.3s ease-in-out, transform 0.2s;
    }
    
    .circle.filled {
    background-color: #2355d5;
    border-color: #0c17b0;
    transform: scale(1.1);
    }
    
    .circle-number {
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
    color: #000000;
    }
    
    /* Diseño Responsivo */
    @media (max-width: 768px) {
    .container {
    margin: 20px; /* Reduce el margen en pantallas más pequeñas */
    padding: 15px; /* Reduce el padding */
    }
    
    h1.invtext {
    font-size: 35px; /* Tamaño de fuente más pequeño para el encabezado */
    }
    
    input[type="text"],
    textarea {
    font-size: 14px; /* Tamaño de fuente más pequeño para inputs y textarea */
    }
    
    button {
    font-size: 14px; /* Tamaño de fuente más pequeño para el botón */
    }
    }
    
    @media (max-width: 480px) {
    h1.invtext {
    font-size: 35px; /* Tamaño de fuente aún más pequeño para el encabezado */
    }
    
    input[type="text"],
    textarea {
    font-size: 12px; /* Tamaño de fuente aún más pequeño para inputs y textarea */
    }
    
    button {
    font-size: 12px; /* Tamaño de fuente aún más pequeño para el botón */
    }
    
    .circle{
        width: 25px;
        height: 25px;
    }

    .circle-number {
    margin-top: -45px;
    font-size: 20px;
    }
    }
    