/* ===== Sidebar Styling ===== */

/* Sidebar container */
.sidebar-nav {
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #e84d21;

}

.sidebar-nav .list-group-item {
    border-bottom: 3px solid white;
    padding: 12px 16px;
    transition: 0.3s;
    background: #e84d21;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
}

/* Hover effect override */
.sidebar-nav .list-group-item:hover {
    background: #e8e9ee !important;
    color: #0b0805;
    cursor: pointer;
}

/* Card Styling */
.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 9px solid #db4e11;

}

/* .card-header {

    font-weight: 600;
    font-size: 18px;
    background-color: #255abd;
    color: #fff;
} */
.card-header h5 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0; /* remove Bootstrap's extra spacing */
    text-align: center;
    color: #fff;
    padding: 10px 0;
    background-color: #255abd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
    width: 100%;
}


/* Table Styling */
.table {
    margin-bottom: 0;
    font-size: 15px;
    background-color: #f3f6f9;

}

/* Force header background color */
.thead-light th {
    background-color: #f1962e !important;
    color: #fff !important;

    text-transform: uppercase;
}

.table.table-bordered.table-hover {
    background-color: white;
}

.table.table-bordered.table-hover tbody tr:hover {
    background-color: #f7e9df;
    transition: 0.3s;
    color: #f9a434;
}

.table thead th {
    background-color: #f8ab10f4;
    color: #0f0101;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 10px;
    font-weight: 400;
}

.table tbody tr:nth-child(odd) {
    background: #fcf7f7fb;
}

/* Even rows */
.table tbody tr:nth-child(even) {
    background: #ebeae6cd;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .list-group-item {
        font-size: 14px;
        padding: 10px;
    }

    .card-header {
        font-size: 16px;
    }
}

/* ===== Organization Section Styling ===== */
.card-organization {
    border-radius: 12px;
    border: none;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.page-title {
    font-weight: 500;
    font-size: 40px;
    color: #333;
    text-align: center;
    margin: 30px auto 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    letter-spacing: 0.18cm;
}

/* Add a thin underline accent */
.page-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #f1962e;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ===== Table Styling ===== */
.table {
    font-size: 15px;
    background: #fff;
}

.table thead.thead-custom th {
    background: #f8ab10f4;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.table tbody tr:hover {
    background: #f5f0e9b8;
}

/* Administrative Head Section */
.administrative-head {
    background: #fbfcfd;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 9px solid #db4e11;
}

.administrative-head .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Heading Banner */
.administrative-head h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
    padding: 15px auto;
    background-color: #255abd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
    width: 100%;
}

/* Image Styling */
.admin-head-img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.admin-head-img:hover {
    transform: scale(1.05);
}

/* Text */
.admin-subheading h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0a0a0a;
}

.administrative-head h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666060e8;
}

.administrative-head p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.administrative-head p.font-italic {
    font-style: italic;
    font-weight: 500;
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .administrative-head {
        text-align: center;
    }

    .admin-head-img {
        max-width: 180px;
        margin-bottom: 20px;
    }
}