.custom-card-header {
    background-color: #008bbf; /* Matches the cyan-blue in screenshot */
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    font-size: 1.1rem;
}
.custom-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: white;
}
.custom-card-title {
    font-size: 1.25rem;
    color: #777;
    margin-bottom: 0;
    font-weight: bold;
}
.btn-custom {
    background-color: #008bbf;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 4px;
}
.btn-custom:hover {
    background-color: #00739e;
    color: white;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* Ensure the body background is slightly off-white if needed, or white */
body {
    background-color: #f8f9fa;
}

.custom-header-bg {
    background: linear-gradient(to right, #f4faeb, #f9fdf5, #f4faeb);
}
.custom-nav-link {
    color: #388e3c !important;
}
.custom-nav-link:hover {
    color: #2e7d32 !important;
    text-decoration: underline;
}
