
/* Capa oscura detrás del div resaltado */
#resaltar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1030;
    display: none;
}

/* Estilo del elemento resaltado */
.resaltar-activo {
    z-index: 10 !important;
    position: relative; /* por si estaba en static */
    box-shadow: 0 0 0 4px #3b89ff, 0 0 25px rgba(0,0,0,0.9);
    border-radius: 4px;
    transform: scale(1.02);
    transition: box-shadow .5s ease, transform .5s ease;
    background: rgba(255, 255, 255, 0.6);
}

.resalta-pop-activo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90vw;
    max-height: 90vh;
    overflow: auto;
    z-index: 1031 !important;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    opacity: 0;
    transition: opacity .5s ease, box-shadow .5s ease, transform .5s ease;
}
.resalta-pop-activo.mostrar {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.resaltar-close-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding: 0;
    background: #ff4d4f;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,.4);
    z-index: 11;
}
.resaltar-close-btn:hover {
    background: #e33a3d;
}

body{
    background-color: #faf8f8;
    background-image: url('../img/land.png');
    background-position: center center; /* ✔ centrado */
    background-repeat: no-repeat;       /* ✔ no repetir */
    background-size: cover;             /* ✔ cubrir pantalla */
    background-attachment: fixed;       /* opcional: efecto parallax */
}

.north-bg {
    background-color: #faf8f8;
}
.bg-north {
    background-color: #faf8f8;
}

.app-bar {
    background: transparent;
}

.navview-content {
    background: url("img/land.png") bottom right no-repeat;
    background-size: cover;
}

.dark-side {
    .navview-content {
        background: url("img/land.png") bottom right no-repeat;
    }
}

:root {
    --hint-background: #005da7;
    --hint-color: #ffffff;
    --hint-border-radius: 8px;

    --input-border-radius: 8px;
    --select-border-radius: 8px;
    --select-options-background : #faf8f8;
}


/* Pill-shaped input */
.my-pill-input {
    /* --input-border-radius: calc(var(--input-height) * 0.33); */

}

/* Dark theme customization */
.my-pill-select {

}

/* Custom styling example */
.switch-resaltado {
    --switch-background: #ff3f3f;
    --switch-background-checked: #3498db;
    --switch-toggle-color: #000;
    --switch-text-color : #ffffff;
}