.management-banner {
    max-height: fit-content;
    object-fit: cover;
}


.management-title {
    color: #0056b3;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-tabs .nav-link {
    color: #0056b3;
    font-weight: 500;
    border-radius: 2rem 2rem 0 0;
    border: none;
    background: #e3f0fb;
    margin: 0 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    background: linear-gradient(90deg, #51d88a 0%, #0056b3 100%);
    color: #fff !important;
}

.profile-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 2px 16px 0 rgba(0, 86, 179, 0.07), 0 1.5px 6px 0 rgba(81, 216, 138, 0.08);
    padding: 2rem 1rem 1.5rem 1rem;
    transition: transform 0.15s, box-shadow 0.15s;
    border: none;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 86, 179, 0.13), 0 3px 12px 0 rgba(81, 216, 138, 0.13);
}

.profile-card .rounded-circle {
    border: 4px solid #51d88a;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.08);
    margin-bottom: 1rem;
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.profile-card h6 {
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-card small {
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .profile-card {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }

    .profile-card .rounded-circle {
        width: 90px;
        height: 90px;
    }
}
