/* === Typography & Base === */
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* === Headers === */
h1, h2, h3, h4, h5 {
    color: #002868;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

/* === Breadcrumbs === */
.breadcrumb {
    background-color: transparent;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #33658A;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* === Cards === */
.card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card h5 {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.25rem;
}

/* === Buttons === */
.btn-primary {
    background-color: #002868;
    border-color: #002868;
}

.btn-primary:hover {
    background-color: #001c4c;
    border-color: #001c4c;
}

.btn-outline-primary {
    color: #002868;
    border-color: #002868;
}

.btn-outline-primary:hover {
    background-color: #002868;
    color: #fff;
}

.btn-outline-secondary {
    color: #33658A;
    border-color: #33658A;
}

.btn-outline-secondary:hover {
    background-color: #33658A;
    color: #fff;
}

/* === Tables === */
.table th {
    background-color: #002868;
    color: #fff;
    font-weight: 500;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f1f3f5;
}

/* === Links === */
a {
    color: #33658A;
    text-decoration: none;
}

a:hover {
    color: #002868;
    text-decoration: underline;
}

/* === Profile Image === */
img.rounded.shadow {
    max-height: 200px;
    object-fit: cover;
    border: 4px solid #00286820;
}

/* === Sections === */
section + section {
    border-top: 1px solid #e9ecef;
    margin-top: 2rem;
    padding-top: 2rem;
}

/* === Muted Text === */
.text-muted {
    color: #6c757d !important;
}

/* === Form Tweaks === */
input[type="text"],
textarea {
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

/* === Pagination === */
.pagination .page-link {
    color: #002868;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #002868;
    border-color: #002868;
}

/* === Utility === */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.04) !important;
}

.page-item.active .page-link {
    background-color: #002868;
    border-color: #002868;
    color:#fff;
}