/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
.u4m8p9c7 .site-content {
    position: relative;
}

.u4m8p9c7 .site-content > *:not(.login-message) {
    filter: blur(0px);
    pointer-events: none; /* Disable interactions */
}

body.u4m8p9c7 .login-message {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
	background-color: #002f57;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    pointer-events: auto; /* Enable interactions with the message */
    z-index: 500;
	color: #fcfbf1;
	font-weight: 500;
}

body.u4m8p9c7 .login-message a {
    display: inline-block;
    margin-top: 5px;
	font-size: 13px;
    text-decoration: underline;
	color: #f1887a;
	font-weight: 400;
}

 .login .simple-jwt-login-oauth-app {
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        width: 0;
        margin: 0 auto;
        text-align: center;
    }


/* 1. Ocultar los campos del ticket antiguo (80923) */
/* Usamos la nueva clase en el body para activar la regla */
body.usuario-no-vip-mi-proyecto div[data-ticket-id="80923"].tribe-tickets__attendee-tickets-item .tribe-tickets__form-field:nth-last-child(-n+5) {
    display: none !important;
}

/* 2. Asegurar que los campos del NUEVO ticket se MUESTREN */
/* Si el código oculto aplica un display: none inline, esta regla lo sobrescribe */
body.usuario-no-vip-mi-proyecto div[data-ticket-id="OTRO_ID_DE_TICKET"].tribe-tickets__attendee-tickets-item .tribe-tickets__form-field {
    display: block !important; /* O display: flex!important, dependiendo del layout del campo */
}