/* /Pages/AuctionRoom.razor.rz.scp.css */
.LotStatus_Pujado[b-jaghcsgutd] {
    color: #AA0000;
}
.LotStatus_Cubierto[b-jaghcsgutd] {
    color: #ff6a00;
}
.LotStatus_NoPujado[b-jaghcsgutd] {
    color: #FFFFFF;
}

.description[b-jaghcsgutd] {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* número de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #EEEEEE;
    border-radius: 6px;
    padding: 2px 8px 2px 8px;
    font-weight: bold;
    /* Mantener altura mínima de 2 líneas */
    line-height: 1.2em; /* ajusta según tu font-size */
    min-height: calc(1.2em * 2); /* altura mínima de 2 líneas */
}


.ChangeBak[b-jaghcsgutd] {
    animation: colorchange-b-jaghcsgutd 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 2s linear 0s normal; /* Chrome and Safari */
}
.ChangeBak2[b-jaghcsgutd] {
    animation: colorchange2-b-jaghcsgutd 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange2 2s linear 0s normal; /* Chrome and Safari */
}
@keyframes colorchange-b-jaghcsgutd {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@keyframes colorchange2-b-jaghcsgutd {    
    0%  {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange2 /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}

.ImageContainer[b-jaghcsgutd] {
    width: 100%;
    height: 100vh; /* ocupa toda la pantalla */
    background-color: #AAAAAA;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px;
    padding: 2px;
}

.LotImage[b-jaghcsgutd] {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#CountdownDiv[b-jaghcsgutd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.55;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

#CountdownNumberDiv[b-jaghcsgutd] {
    font-size: 15em;
    color: white;
}





/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbarOK[b-jaghcsgutd] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #008000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarOK.show[b-jaghcsgutd] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-jaghcsgutd 0.5s, fadeout-b-jaghcsgutd 0.5s 3.5s;
    }

#snackbarKO[b-jaghcsgutd] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #800000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarKO.show[b-jaghcsgutd] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-jaghcsgutd 0.5s, fadeout-b-jaghcsgutd 0.5s 3.5s;
    }


#snackbarNeutral[b-jaghcsgutd] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #9c5817; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarNeutral.show[b-jaghcsgutd] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-jaghcsgutd 0.5s, fadeout-b-jaghcsgutd 0.5s 3.5s;
    }

snackbarAzul[b-jaghcsgutd] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #1d4ed8; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbarAzul.show[b-jaghcsgutd] {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
    animation: fadein-b-jaghcsgutd 0.5s, fadeout-b-jaghcsgutd 0.5s 3.5s;
}




/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein-b-jaghcsgutd {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout-b-jaghcsgutd {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}



.flipdown[b-jaghcsgutd] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

    .flipdown *[b-jaghcsgutd] {
        color: #fff !important; /* O el color que necesites */
    }

/* Evita que contenedores padres lo oculten */
#flipdown[b-jaghcsgutd] {
    overflow: visible !important;
}


/* Botones */

.btn[b-jaghcsgutd] {
    --btn-bg: #2563eb; /* azul moderno */
    --btn-bg-hover: #1d4ed8;
    --btn-bg-active: #1e40af;
    --btn-text: #ffffff;
    --btn-border: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.6rem;
    border: 1px solid var(--btn-border);
    background-color: var(--btn-bg);
    color: var(--btn-text);
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

    /* Hover */
    .btn:hover:not(:disabled)[b-jaghcsgutd] {
        background-color: var(--btn-bg-hover);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Active */
    .btn:active:not(:disabled)[b-jaghcsgutd] {
        background-color: var(--btn-bg-active);
        transform: translateY(1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    /* Focus accesible */
    .btn:focus-visible[b-jaghcsgutd] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
    }

    /* Disabled */
    .btn:disabled[b-jaghcsgutd],
    .btn.disabled[b-jaghcsgutd] {
        opacity: 0.6;
        cursor: not-allowed;
        box-shadow: none;
    }

.btn-success[b-jaghcsgutd] {
    --btn-bg: #16a34a;
    --btn-bg-hover: #15803d;
    --btn-bg-active: #166534;
}

.btn-danger[b-jaghcsgutd] {
    --btn-bg: #dc2626;
    --btn-bg-hover: #b91c1c;
    --btn-bg-active: #991b1b;
}

.btn-secondary[b-jaghcsgutd] {
    --btn-bg: #475569;
    --btn-bg-hover: #334155;
    --btn-bg-active: #1e293b;
}

.btn-outline[b-jaghcsgutd] {
    --btn-bg: transparent;
    --btn-bg-hover: rgba(37, 99, 235, 0.08);
    --btn-bg-active: rgba(37, 99, 235, 0.16);
    --btn-text: #2563eb;
    --btn-border: #2563eb;
}
.btn-sm[b-jaghcsgutd] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-lg[b-jaghcsgutd] {
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem;
}
.user-count[b-jaghcsgutd] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem; /* tamaño del icono un poco más grande */    
}

    .user-count i[b-jaghcsgutd] {
        display: block;
        color: #660000;
    }

    .user-count .badge[b-jaghcsgutd] {
        position: absolute;
        bottom: -0.25em; /* ligeramente más abajo */
        right: -0.25em; /* ligeramente más a la derecha */
        background: #F7EAEA;
        color: #660000;
        border-radius: 50%;
        padding: 0.3em 0.6em; /* intermedio: más visible pero no gigante */
        font-size: 0.35em; /* un poco más grande que antes */
        font-weight: bold;
        box-shadow: 0 0 0.1em rgba(0,0,0,0.5);
    }

#InverseBarDiv[b-jaghcsgutd] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px; /* barra fina */
    width: 0%;
    background-color: #660000;
    transition: width 0.1s linear;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}


/* /Pages/Home.razor.rz.scp.css */
.LotStatus_Pujado[b-styv1px8hl] {
    color: #AA0000;
}
.LotStatus_Cubierto[b-styv1px8hl] {
    color: #ff6a00;
}
.LotStatus_NoPujado[b-styv1px8hl] {
    color: #FFFFFF;
}

.description[b-styv1px8hl] {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* número de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #EEEEEE;
    border-radius: 6px;
    padding: 2px 8px 2px 8px;
    font-weight: bold;
    /* Mantener altura mínima de 2 líneas */
    line-height: 1.2em; /* ajusta según tu font-size */
    min-height: calc(1.2em * 2); /* altura mínima de 2 líneas */
}


.ChangeBak[b-styv1px8hl] {
    animation: colorchange-b-styv1px8hl 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 2s linear 0s normal; /* Chrome and Safari */
}
.ChangeBak2[b-styv1px8hl] {
    animation: colorchange2-b-styv1px8hl 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange2 2s linear 0s normal; /* Chrome and Safari */
}
@keyframes colorchange-b-styv1px8hl {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@keyframes colorchange2-b-styv1px8hl {    
    0%  {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange2 /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}

.ImageContainer[b-styv1px8hl] {
    width: 100%;
    height: 40vh;
    background-color: #AAAAAA;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 6px;
    padding: 2px;
}

.LotImage[b-styv1px8hl] {    
    max-width: 100%;
    max-height: 100% !important;
    vertical-align: middle;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-sizing: unset;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


#CountdownDiv[b-styv1px8hl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.75;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

#CountdownNumberDiv[b-styv1px8hl] {
    font-size: 10em;
    color: white;
}

@media (max-width: 640.98px) {
    .ImageContainer[b-styv1px8hl] {
        width: 100%;
        height: 40vh;
        background-color: #AAAAAA;
        display: flex;
        align-items: center;
    }
    .LotImage[b-styv1px8hl] {
        max-width: 100%;
        max-height: 40vh;
        vertical-align: middle;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .AuctionDescription[b-styv1px8hl] {
    }

}

@media (min-width: 641px) {
    .ImageContainer[b-styv1px8hl] {
        width: 100%;
        height: 75vh;
        background-color: #AAAAAA;
        display: flex;
        align-items: center;
    }
    .LotImage[b-styv1px8hl] {
        max-width: 100%;
        max-height: 75vh;
        vertical-align: middle;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .AuctionDescription[b-styv1px8hl] {
        height: 3em;
        margin: 0.5em;
        max-height: 200px;
    }

}




/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbarOK[b-styv1px8hl] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #008000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarOK.show[b-styv1px8hl] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-styv1px8hl 0.5s, fadeout-b-styv1px8hl 0.5s 3.5s;
    }

#snackbarKO[b-styv1px8hl] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #800000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarKO.show[b-styv1px8hl] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-styv1px8hl 0.5s, fadeout-b-styv1px8hl 0.5s 3.5s;
    }


#snackbarNeutral[b-styv1px8hl] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #9c5817; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarNeutral.show[b-styv1px8hl] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-styv1px8hl 0.5s, fadeout-b-styv1px8hl 0.5s 3.5s;
    }



/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein-b-styv1px8hl {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout-b-styv1px8hl {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}



.flipdown[b-styv1px8hl] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

    .flipdown *[b-styv1px8hl] {
        color: #fff !important; /* O el color que necesites */
    }

/* Evita que contenedores padres lo oculten */
#flipdown[b-styv1px8hl] {
    overflow: visible !important;
}


/* Botones */

.btn[b-styv1px8hl] {
    --btn-bg: #2563eb; /* azul moderno */
    --btn-bg-hover: #1d4ed8;
    --btn-bg-active: #1e40af;
    --btn-text: #ffffff;
    --btn-border: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.6rem;
    border: 1px solid var(--btn-border);
    background-color: var(--btn-bg);
    color: var(--btn-text);
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

    /* Hover */
    .btn:hover:not(:disabled)[b-styv1px8hl] {
        background-color: var(--btn-bg-hover);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Active */
    .btn:active:not(:disabled)[b-styv1px8hl] {
        background-color: var(--btn-bg-active);
        transform: translateY(1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    /* Focus accesible */
    .btn:focus-visible[b-styv1px8hl] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
    }

    /* Disabled */
    .btn:disabled[b-styv1px8hl],
    .btn.disabled[b-styv1px8hl] {
        opacity: 0.6;
        cursor: not-allowed;
        box-shadow: none;
    }

.btn-success[b-styv1px8hl] {
    --btn-bg: #16a34a;
    --btn-bg-hover: #15803d;
    --btn-bg-active: #166534;
}

.btn-danger[b-styv1px8hl] {
    --btn-bg: #dc2626;
    --btn-bg-hover: #b91c1c;
    --btn-bg-active: #991b1b;
}

.btn-secondary[b-styv1px8hl] {
    --btn-bg: #475569;
    --btn-bg-hover: #334155;
    --btn-bg-active: #1e293b;
}

.btn-outline[b-styv1px8hl] {
    --btn-bg: transparent;
    --btn-bg-hover: rgba(37, 99, 235, 0.08);
    --btn-bg-active: rgba(37, 99, 235, 0.16);
    --btn-text: #2563eb;
    --btn-border: #2563eb;
}
.btn-sm[b-styv1px8hl] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-lg[b-styv1px8hl] {
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem;
}
.user-count[b-styv1px8hl] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem; /* tamaño del icono un poco más grande */    
}

    .user-count i[b-styv1px8hl] {
        display: block;
        color: #660000;
    }

    .user-count .badge[b-styv1px8hl] {
        position: absolute;
        bottom: -0.25em; /* ligeramente más abajo */
        right: -0.25em; /* ligeramente más a la derecha */
        background: #F7EAEA;
        color: #660000;
        border-radius: 50%;
        padding: 0.3em 0.6em; /* intermedio: más visible pero no gigante */
        font-size: 0.35em; /* un poco más grande que antes */
        font-weight: bold;
        box-shadow: 0 0 0.1em rgba(0,0,0,0.5);
    }



#InverseBarDiv[b-styv1px8hl] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px; /* barra fina */
    width: 0%;
    background-color: #660000;
    transition: width 0.1s linear;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}


.img-thumb[b-styv1px8hl] {
    filter: blur(10px);
    transition: filter 0.4s ease;
}

    .img-thumb.loaded[b-styv1px8hl] {
        filter: blur(0);
    }


.modal-overlay[b-styv1px8hl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.large-modal[b-styv1px8hl] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

.paddle-grid[b-styv1px8hl] {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 6px;
}

.paddle-btn[b-styv1px8hl] {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
}

    .paddle-btn:hover[b-styv1px8hl] {
        background-color: #007bff;
        color: white;
    }

.phone-modal[b-styv1px8hl] {
    background: white;
    padding: 25px;
    border-radius: 10px;
    min-width: 400px;
    max-width: 60%;
}

.phone-lines-container[b-styv1px8hl] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.phone-line-btn[b-styv1px8hl] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
}

    .phone-line-btn:hover[b-styv1px8hl] {
        background-color: #28a745;
        color: white;
    }

    .phone-line-btn.occupied[b-styv1px8hl] {
        font-weight: bold;
    }
/* /Pages/Index.razor.rz.scp.css */
.LotStatus_Pujado[b-uqc4lyws87] {
    color: #AA0000;
}
.LotStatus_Cubierto[b-uqc4lyws87] {
    color: #ff6a00;
}
.LotStatus_NoPujado[b-uqc4lyws87] {
    color: #FFFFFF;
}

.description[b-uqc4lyws87] {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* número de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #EEEEEE;
    border-radius: 6px;
    padding: 2px 8px 2px 8px;
    font-weight: bold;
    /* Mantener altura mínima de 2 líneas */
    line-height: 1.2em; /* ajusta según tu font-size */
    min-height: calc(1.2em * 2); /* altura mínima de 2 líneas */
}


.ChangeBak[b-uqc4lyws87] {
    animation: colorchange-b-uqc4lyws87 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 2s linear 0s normal; /* Chrome and Safari */
}
.ChangeBak2[b-uqc4lyws87] {
    animation: colorchange2-b-uqc4lyws87 2s linear 25ms normal; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange2 2s linear 0s normal; /* Chrome and Safari */
}
@keyframes colorchange-b-uqc4lyws87 {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@keyframes colorchange2-b-uqc4lyws87 {    
    0%  {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}
@-webkit-keyframes colorchange2 /* Safari and Chrome - necessary duplicate */ {
    0% {background: #800000;color: black;}
    33% {background: #9f3737;color: black;}
    66% {background: #cb9797;color: black;}
    100% {background: white;color: black;}
}

.ImageContainer[b-uqc4lyws87] {
    width: 100%;
    height: 40vh;
    background-color: #AAAAAA;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 6px;
    padding: 2px;
}

.LotImage[b-uqc4lyws87] {    
    max-width: 100%;
    max-height: 100% !important;
    vertical-align: middle;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-sizing: unset;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


#CountdownDiv[b-uqc4lyws87] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.75;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

#CountdownNumberDiv[b-uqc4lyws87] {
    font-size: 10em;
    color: white;
}

@media (max-width: 640.98px) {
    .ImageContainer[b-uqc4lyws87] {
        width: 100%;
        height: 40vh;
        background-color: #AAAAAA;
        display: flex;
        align-items: center;
    }
    .LotImage[b-uqc4lyws87] {
        max-width: 100%;
        max-height: 40vh;
        vertical-align: middle;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .AuctionDescription[b-uqc4lyws87] {
    }

}

@media (min-width: 641px) {
    .ImageContainer[b-uqc4lyws87] {
        width: 100%;
        height: 75vh;
        background-color: #AAAAAA;
        display: flex;
        align-items: center;
    }
    .LotImage[b-uqc4lyws87] {
        max-width: 100%;
        max-height: 75vh;
        vertical-align: middle;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .AuctionDescription[b-uqc4lyws87] {
        height: 3em;
        margin: 0.5em;
        max-height: 200px;
    }

}




/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbarOK[b-uqc4lyws87] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #008000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarOK.show[b-uqc4lyws87] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-uqc4lyws87 0.5s, fadeout-b-uqc4lyws87 0.5s 3.5s;
    }

#snackbarKO[b-uqc4lyws87] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #800000; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarKO.show[b-uqc4lyws87] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-uqc4lyws87 0.5s, fadeout-b-uqc4lyws87 0.5s 3.5s;
    }


#snackbarNeutral[b-uqc4lyws87] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #9c5817; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarNeutral.show[b-uqc4lyws87] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-uqc4lyws87 0.5s, fadeout-b-uqc4lyws87 0.5s 3.5s;
    }


#snackbarInfo[b-uqc4lyws87] {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #1d4ed8; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbarInfo.show[b-uqc4lyws87] {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
        animation: fadein-b-uqc4lyws87 0.5s, fadeout-b-uqc4lyws87 0.5s 3.5s;
    }



/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein-b-uqc4lyws87 {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout-b-uqc4lyws87 {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}



.flipdown[b-uqc4lyws87] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

    .flipdown *[b-uqc4lyws87] {
        color: #fff !important; /* O el color que necesites */
    }

/* Evita que contenedores padres lo oculten */
#flipdown[b-uqc4lyws87] {
    overflow: visible !important;
}


/* Botones */

.btn[b-uqc4lyws87] {
    --btn-bg: #2563eb; /* azul moderno */
    --btn-bg-hover: #1d4ed8;
    --btn-bg-active: #1e40af;
    --btn-text: #ffffff;
    --btn-border: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.6rem;
    border: 1px solid var(--btn-border);
    background-color: var(--btn-bg);
    color: var(--btn-text);
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

    /* Hover */
    .btn:hover:not(:disabled)[b-uqc4lyws87] {
        background-color: var(--btn-bg-hover);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Active */
    .btn:active:not(:disabled)[b-uqc4lyws87] {
        background-color: var(--btn-bg-active);
        transform: translateY(1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    /* Focus accesible */
    .btn:focus-visible[b-uqc4lyws87] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
    }

    /* Disabled */
    .btn:disabled[b-uqc4lyws87],
    .btn.disabled[b-uqc4lyws87] {
        opacity: 0.6;
        cursor: not-allowed;
        box-shadow: none;
    }

.btn-success[b-uqc4lyws87] {
    --btn-bg: #16a34a;
    --btn-bg-hover: #15803d;
    --btn-bg-active: #166534;
}

.btn-danger[b-uqc4lyws87] {
    --btn-bg: #dc2626;
    --btn-bg-hover: #b91c1c;
    --btn-bg-active: #991b1b;
}

.btn-secondary[b-uqc4lyws87] {
    --btn-bg: #475569;
    --btn-bg-hover: #334155;
    --btn-bg-active: #1e293b;
}

.btn-outline[b-uqc4lyws87] {
    --btn-bg: transparent;
    --btn-bg-hover: rgba(37, 99, 235, 0.08);
    --btn-bg-active: rgba(37, 99, 235, 0.16);
    --btn-text: #2563eb;
    --btn-border: #2563eb;
}
.btn-sm[b-uqc4lyws87] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-lg[b-uqc4lyws87] {
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem;
}
.user-count[b-uqc4lyws87] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 2rem; /* tamaño del icono un poco más grande */    
}

    .user-count i[b-uqc4lyws87] {
        display: block;
        color: #660000;
    }

    .user-count .badge[b-uqc4lyws87] {
        position: absolute;
        bottom: -0.25em; /* ligeramente más abajo */
        right: -0.25em; /* ligeramente más a la derecha */
        background: #F7EAEA;
        color: #660000;
        border-radius: 50%;
        padding: 0.3em 0.6em; /* intermedio: más visible pero no gigante */
        font-size: 0.35em; /* un poco más grande que antes */
        font-weight: bold;
        box-shadow: 0 0 0.1em rgba(0,0,0,0.5);
    }



#InverseBarDiv[b-uqc4lyws87] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px; /* barra fina */
    width: 0%;
    background-color: #660000;
    transition: width 0.1s linear;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}


.img-thumb[b-uqc4lyws87] {
    filter: blur(10px);
    transition: filter 0.4s ease;
}

    .img-thumb.loaded[b-uqc4lyws87] {
        filter: blur(0);
    }


.modal-overlay[b-uqc4lyws87] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.large-modal[b-uqc4lyws87] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

.paddle-grid[b-uqc4lyws87] {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 6px;
}

.paddle-btn[b-uqc4lyws87] {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
}

    .paddle-btn:hover[b-uqc4lyws87] {
        background-color: #007bff;
        color: white;
    }

.phone-modal[b-uqc4lyws87] {
    background: white;
    padding: 25px;
    border-radius: 10px;
    min-width: 400px;
    max-width: 60%;
}

.phone-lines-container[b-uqc4lyws87] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.phone-line-btn[b-uqc4lyws87] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
}

    .phone-line-btn:hover[b-uqc4lyws87] {
        background-color: #28a745;
        color: white;
    }

    .phone-line-btn.occupied[b-uqc4lyws87] {
        font-weight: bold;
    }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-67a9q8mru9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-67a9q8mru9] {
    flex: 1;
}

.sidebar[b-67a9q8mru9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-67a9q8mru9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-logo[b-67a9q8mru9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-start;
    height: 3.5rem;
    display: flex;
    align-items: center;
}


    .top-row[b-67a9q8mru9]  a, .top-row .btn-link[b-67a9q8mru9] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-67a9q8mru9] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-67a9q8mru9] {
        display: none;
    }

    .top-row.auth[b-67a9q8mru9] {
        justify-content: space-between;
    }

    .top-row a[b-67a9q8mru9], .top-row .btn-link[b-67a9q8mru9] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-67a9q8mru9] {
        flex-direction: row;
    }

    .sidebar[b-67a9q8mru9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-67a9q8mru9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-67a9q8mru9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}


/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-adtk0alnav] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-adtk0alnav] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-adtk0alnav] {
    font-size: 1.1rem;
}

.oi[b-adtk0alnav] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-adtk0alnav] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-adtk0alnav] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-adtk0alnav] {
        padding-bottom: 1rem;
    }

    .nav-item[b-adtk0alnav]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-adtk0alnav]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-adtk0alnav]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-adtk0alnav] {
        display: none;
    }

    .collapse[b-adtk0alnav] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
