.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background-color: #00316E;
    padding-top: 1rem;
    z-index: 1000;
    transition: all 0.3s;
}
.main-content2 {
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    padding: 2rem;
}
.main-content {
    margin-left: 250px;
    min-height: 100vh; /* Altura completa de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    padding: 2rem;
}

/* Container dentro de main-content */
.main-content2 .container,
.main-content .container {
    width: 100%;
    max-width: 1200px; /* o el ancho máximo que prefieras */
}

.sidebar .nav-link {
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    color: rgba(255,255,255,.95);
    background-color: rgba(255,255,255,.1);
}

.sidebar .navbar-brand {
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    display: block;
}

.toggle-sidebar {
    position: fixed;
    right: 250px;
    top: 1rem;
    z-index: 1001;
    background-color: #00316E;
    border: none;
    color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 0.25rem 0 0 0.25rem;
    transition: all 0.3s;
}
.card.shadow {
    border: 0;
}


.logo svg {
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-select:focus {
    border-color: #dee2e6;
    box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.25);
}

.alert-danger p {
    margin-bottom: 0.25rem;
}

.alert-danger p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .sidebar {
        transform: translateX(100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-right: 0;
    }
    
    .toggle-sidebar {
        right: 0;
    }
    
    .toggle-sidebar.active {
        right: 250px;
    }
}
@media (max-width: 576px) {
    .col-lg-4 {
        padding: 0 1rem;
    }
}

.user-info {
    padding: 1rem 1.5rem;
    color: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.progress-container {
    height: 25px;
    margin: 1rem 0;
}

.progress-bar-pending {
    background-color: var(--bs-warning);
    color: var(--bs-dark);
}

.progress-bar-review {
    background-color: var(--bs-info);
    color: var(--bs-white);
}

.progress-bar-approved {
    background-color: var(--bs-success);
    color: var(--bs-white);
}

.progress-bar-rejected {
    background-color: var(--bs-danger);
    color: var(--bs-white);
}

/* Clases dinámicas para los anchos */
.w-0 { width: 0%; }
.w-10 { width: 10%; }
.w-20 { width: 20%; }
.w-30 { width: 30%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.w-100 { width: 100%; }


.tables {
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
    background: #fff;
    border-radius: 1rem;
}
tr th {
    font-weight: 700;
    font-size: 0.65rem;
    color: #8392ab!important;
}
tr td {
    font-weight: 600;
    font-size: 0.70rem;
    line-height: 1.25;
    opacity: 0.4;
}
td.quit {
    opacity: 1;
}
.btn-group a {
    font-size: 0.70rem;
    align-items: center;
    display: flex;
}
.card {
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
    background: #fff;
    border-radius: 1rem;
    border: 0;
}
h1.slogan {
    color:#00316E;
}