.images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    justify-items: center;
    margin: 30px 0;
}

    .images-container img:nth-child(3) {
        grid-column: span 2;
        justify-self: center;
    }

    .images-container img {
        width: 150px;
        height: 150px;
        border: 2px solid #000;
    }

.login-container {
    max-width: 350px;
    padding: 0 15px 15px;
   
}

.login-background {
    background-image: url("/images/login.jpg");
    background-size: cover;
    background-position: center;
}

#sidebar-toggler {
    position: absolute;
    left: 100%;
    bottom: 25px;
    z-index: 99;
}

#sidebar-offcanvas-toggler {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 99;
}

nav .active {
    color: black !important;
}

.nav-pills .nav-link:hover {
    color: #6D9CA7 !important;
}

.nav-pills .nav-link:active {
    color: var(--bs-black) !important;
    background: var(--bs-primary-bg-subtle) !important;
}

#loader {
    position: absolute;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-content: center;
    color: var(--bs-primary);
    background-color: rgba(0, 0, 0, 0.5);
}

    #loader > div {
        width: 5rem;
        height: 5rem;
    }

html[data-bs-theme="dark"] .logo {
    content: url("/images/logo-dark2.png");
}

/*main:has(> .with-background) {
    background-image: url("/images/background3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.with-background {
    background-image: url("/images/background3.jpg");
     background-size: cover;
    background-position: center;
    background-position: center;
    backdrop-filter: blur(5px) brightness(70%);
    height: 100% !important;
}

.with-background-black {
    background-image: url("/images/background3Black.jpg");
     background-size: cover;
    background-position: center;
    background-position: center;
    backdrop-filter: blur(5px) brightness(70%);
    height: 100% !important;
}

    .with-background .logo {
        content: url("/images/logo-dark2.png");
    }*/

.swal-footer {
    display: flex;
    justify-content: space-around;
}

table a {
    color: var(--bs-body-color);
}

.table-group-divider {
    border-top-color: var(--bs-primary);
}


@font-face {
    font-family: 'Proxima Nova', sans-serif;
    src: url('../fonts/Proxima Nova Reg.ttf') format('truetype'); /* Ajusta la ruta y el formato según tu fuente */
}

body {
    font-family: 'Proxima Nova', sans-serif;
}

label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .table-grid > div {
        display: flex;
        flex-direction: column;
    }

.shadow-logo {
    box-shadow: 5px 0.5rem 0.3rem rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.contentContainer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.contentContainer.show {
    max-height: 350px;
}

.contentContainer.hide {
    max-height: 0;
}

input[readonly],
input[readonly]:focus {
    background-color: #f0f0f0; 
    color: #6c757d;
}

.status-title {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(var(--bs-body-bg-rgb));
}

.color-Pendiente {
    background-color: #4bce97;
    border-color: #4bce97;
}
.color-Encurso {
    background-color: #faa53d;
    border-color: #faa53d;
}

.color-Finalizada {
    background-color: #f87462;
    border-color: #f87462;
}

.color-Expedienteencurso {
    background-color: #9f8fef;
    border-color: #9f8fef;
}
.color-ExpedienteFinalizado {
    background-color: #579dff;
    border-color: #579dff;
}

.button-container a {
    font-weight: 600;
    text-transform: uppercase;
    min-height: 60px;
    vertical-align: middle;
    display: grid;
    place-items: center;
    padding: 0 50px;
    color: white;
}

.logo-home {
    background-image: url("/images/home.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 90%;
}
input[readonly], label.readonly {
    pointer-events: none;
    cursor: not-allowed; /* Cambia el cursor a un signo de prohibido */
}

.table-responsive thead {
    background-color: #847822;
    color: white;
}