body { 
    background-color: #f8f9fa;
}

.sidebar { 
    width: 250px;
    height: 100vh;
    background-color: #be0808; 
    color: white; 
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    overflow-y: auto;
}

.main-content {
    margin-left: 250px;
    width: calc(100% - 250px);
    min-height: 100vh;
}

.brand-logo { 
    font-weight: bold; letter-spacing: 1px; 
}

.table-hover tbody tr:hover { 
    cursor: pointer; 
}

.nav-item:hover {
    border-radius: 12px;
    background-color: #9c0505;
}

.card-body {
    border-radius: 14px;
}

.card {
    --bs-card-border-width: 0 !important;
}

.card-kpi-hover .card-body p {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card-kpi-hover:hover .card-body p {
    opacity: 1;
    transform: translateY(0);
}

.kpi-card-container .card {
    transition: all 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.kpi-card-container.card-active .card {
    transform: scale(0.97);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 3px #be0808;
}

.kpi-card-container.card-active .card::after {
    content: "ACTIVO";
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: currentColor;
    letter-spacing: 0.5px;
}

.kpi-card-container.card-active .card::before {
    content: "";
    position: absolute;
    bottom: 13px;
    right: 66px;
    width: 6px;
    height: 6px;
    background-color: #00ff44;
    border-radius: 50%;
    box-shadow: 0 0 6px #00ff44;
    animation: blinkDot 0.8s infinite alternate;
}

@keyframes blinkDot {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.3; transform: scale(0.8); }
}

.title-text { 
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.bg-garantia {
    background-color: #af0000;
    color: white;
    transition: all 0.3s ease;
}

.bg-garantia:hover {
    background-color: #7c0606;
    cursor: pointer;
    color: #ffffff;
}

.bg-habilitar {
    background-color: rgba(124, 57, 3, 0.933); 
    transition: all 0.3s ease;
}

.bg-habilitar:hover {
    background-color: #bd5f06ee;
    cursor: pointer;
    color: white;
}

.bg-proceso {
    background-color: #da621d;
    color: white;
    transition: all 0.3s ease;
}

.bg-proceso:hover {
    background-color: #c25719;
    cursor: pointer;
    color: white;
}

.bg-remate {
    background-color: #7e7e7e;
    transition: all 0.3s ease;
}

.bg-remate:hover {
    background-color: #636363;
    cursor: pointer;
    color: white;
}

.bg-registros {
    background-color: #cfcfcf;
    cursor: pointer;
    color: #464646;
    transition: all 0.3s ease;
}

.bg-registros:hover {
    background-color: #3a3a3a;
    color: #ffffff;
    cursor: pointer;
}

.bg-danger {
    transition: all 0.3s ease;
}

.bg-danger:hover {
    background-color: #c00b0b !important;
    color: white !important;
}

.bg-success { 
    transition: all 0.3s ease !important;
}

.bg-success:hover {
    background-color: #015c39 !important;
    color: white !important;
}

.bg-primary { 
    background-color: #2441e9 !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.bg-primary:hover {
    background-color: #0b24b1 !important;
    color: white !important;
}

.bg-secondary { 
    transition: all 0.3s ease !important;
}

.bg-secondary:hover {
    background-color: #595e63 !important;
}

.bg-dark { 
    transition: all 0.3s ease !important;
}

.bg-dark:hover {
    background-color: #464646 !important;
}

.bg-warning { 
    transition: all 0.3s ease !important;
}

.bg-warning:hover {
    background-color: #e0a31f !important;
}

.table-responsive {
    min-height: 350px;
}

.bottom-25 {
    bottom: 5%;
}

#btnUsuario {
    font-size: 12px;
}