#intro {
    position: fixed; /* o absolute */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; /* o cualquier color de fondo que prefieras */
    z-index: 1000; /* para asegurarse de que esté encima del contenido */
}

#intro img {
    width: auto; /* o el tamaño que prefieras */
    height: auto; /* o el tamaño que prefieras */
}

#passwordScreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 1001;
	min-width:90% !important;
}

#passwordScreen img {
    max-width: 250px; /* Ajusta esto según el tamaño de tu logotipo */
    margin-bottom: 30px;
}

#passwordInput, #submitPassword {
    margin: 10px;
}
/* Media query para dispositivos móviles */
@media (max-width: 600px) { /* Ajusta el 600px según tus necesidades */
    #passwordScreen img {


    }

    #passwordInput, #submitPassword {
        font-size: 25px; /* Tamaño de fuente más grande para una mejor legibilidad */
        padding: 15px 15px; /* Aumenta el padding para hacer los elementos más "tocables" */
    }
}

.evento-contador {
    border-radius: 4px; /* Rectángulo con esquinas redondeadas para escritorio */
    padding: 2px 4px;
    font-size: 0.8em;
    position: absolute;
    top: 2px;
    right: 4rem;
}

/* Estilos para dispositivos móviles */
/*
@media (max-width: 600px) {
    .evento-contador.tiene-eventos {
        border-radius: 50%; 
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        padding: 0;
		right: 4rem;

    }
}
*/

.fc-daygrid-day-events {
    margin-bottom: 3em !important;
}
