@import '_content/BibliotecaClasesRazor/BibliotecaClasesRazor.nfbjc06z93.bundle.scp.css';

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n5bszz3y1f],
.components-reconnect-repeated-attempt-visible[b-n5bszz3y1f],
.components-reconnect-failed-visible[b-n5bszz3y1f],
.components-pause-visible[b-n5bszz3y1f],
.components-resume-failed-visible[b-n5bszz3y1f],
.components-rejoining-animation[b-n5bszz3y1f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-retrying[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-failed[b-n5bszz3y1f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n5bszz3y1f] {
    display: block;
}


#components-reconnect-modal[b-n5bszz3y1f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-n5bszz3y1f 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp-b-n5bszz3y1f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n5bszz3y1f 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }
}

    #components-reconnect-modal[b-n5bszz3y1f]::backdrop {
        background-color: rgba(0, 0, 0, 0.4);
        animation: components-reconnect-modal-fadeInOpacity-b-n5bszz3y1f 0.5s ease-in-out;
        opacity: 1;
    }

@keyframes components-reconnect-modal-slideUp-b-n5bszz3y1f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n5bszz3y1f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n5bszz3y1f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n5bszz3y1f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n5bszz3y1f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n5bszz3y1f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n5bszz3y1f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n5bszz3y1f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n5bszz3y1f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n5bszz3y1f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n5bszz3y1f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n5bszz3y1f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n5bszz3y1f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Fincas/CronogramaMantenimiento/FormModalCronogramaMantenimiento.razor.rz.scp.css */
/* Scroll container for cronograma table */
.cronograma-scroll[b-xjew5ax5u6] {
  /* Allow the scroll area to size relative to the viewport (adjust offset as needed) */
  max-height: calc(100vh - 10rem);
  overflow: auto;
  position: relative; /* establish containing block for sticky */
}

/* Make table header rows sticky */
.cronograma-scroll table[b-xjew5ax5u6] {
  /* Required in some browsers so sticky on table headers works correctly */
  border-collapse: separate;
}

.cronograma-scroll table thead th[b-xjew5ax5u6] {
  position: sticky;
  background: var(--bs-white, #fff);
  z-index: 50; /* higher to sit above table cells */
  box-shadow: 0 2px 2px -1px rgba(0,0,0,0.08);
}

/* First header row sticks at top */
.cronograma-scroll table thead tr:first-child th[b-xjew5ax5u6] {
  top: 0;
}

/* Second header row sits below the first (adjust value if needed) */
.cronograma-scroll table thead tr:nth-child(2) th[b-xjew5ax5u6] {
  /* Adjust this value if your first header row has different height */
  top: 48px;
}

/* Ensure sticky header cells align nicely */
.cronograma-scroll table thead th.align-middle[b-xjew5ax5u6] {
  vertical-align: middle;
}
/* /Components/Pages/Fincas/CronogramaMantenimiento/VerCronogramaMantenimientoModal2.razor.rz.scp.css */
/* Scroll container for cronograma table (same behavior as in the form modal) */
.cronograma-scroll[b-auni51b4fx] {
  /* Allow the scroll area to size relative to the viewport (adjust offset as needed) */
  max-height: calc(100vh - 10rem);
  overflow: auto;
  position: relative; /* establish containing block for sticky */
}

/* Make table header rows sticky */
.cronograma-scroll table[b-auni51b4fx] {
  /* Required in some browsers so sticky on table headers works correctly */
  border-collapse: separate;
}

.cronograma-scroll table thead th[b-auni51b4fx] {
  position: sticky;
  background: var(--bs-white, #fff);
  z-index: 1055; /* high to sit above modal content */
  box-shadow: 0 2px 2px -1px rgba(0,0,0,0.08);
}

/* First header row sticks at top */
.cronograma-scroll table thead tr:first-child th[b-auni51b4fx] {
  top: 0;
}

/* Second header row sits below the first (adjust value if needed) */
.cronograma-scroll table thead tr:nth-child(2) th[b-auni51b4fx] {
  top: 48px;
}

/* Third header row (if present) sits below the first two */
.cronograma-scroll table thead tr:nth-child(3) th[b-auni51b4fx] {
  top: 96px;
}

/* Ensure sticky header cells align nicely */
.cronograma-scroll table thead th.align-middle[b-auni51b4fx] {
  vertical-align: middle;
}
