/* Brand colors */
:root {
    --brand-primary: #f4d000;
    --brand-primary-hover: #dbbb00;
    --brand-primary-active: #c2a600;
    --brand-primary-soft: rgba(244, 208, 0, 0.12);
    --brand-on-primary: #1f2937; /* primary 배경 위의 텍스트 */
    --brand-primary-dark: #8a7600; /* 텍스트용 진한 브랜드 색 (가독성 확보) */
}

/* ─── 공통 유틸 클래스 ─────────────────────────────────── */

/* 검색 폼 필터 컬럼 (form-row 내부에서 단독 사용, col-md-2 불필요) */
.search-filter-col {
    flex: 0 0 230px;
    padding-right: 5px;
    padding-left: 5px;
}

/* 권한별 메뉴 — 메뉴 블록 그리드 (가용 폭에 맞춰 최대한 많은 블록 배치) */
.menu-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

/* 폼 라벨 (모달/등록 폼 공통) */
.form-label-strong {
    font-weight: 600;
    color: #475569;
}

/* 키가 큰 input/select (h=48, radius=12) */
.form-control-lg-rounded {
    height: 48px;
    border-radius: 12px;
}

/* 둥근 textarea */
textarea.form-control-rounded {
    border-radius: 12px;
}

/* 모달 공통 */
.modal-content.modal-rounded {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-header.modal-header-divider {
    border-bottom: 1px solid #f1f5f9;
    padding: 25px;
}

.modal-footer.modal-footer-divider {
    border-top: 1px solid #f1f5f9;
    padding: 20px;
}

.modal-body.modal-body-padded {
    padding: 25px;
}

.modal-title.modal-title-bold {
    font-weight: 700;
}

/* 둥근 버튼 */
.btn.btn-rounded {
    border-radius: 10px;
}

.btn.btn-rounded-wide {
    border-radius: 10px;
    padding: 10px 25px;
}

/* Soft 뱃지 */
.badge.badge-soft-success {
    background-color: #d4edda;
    color: #155724;
    padding: 0.35em 0.65em;
}

.badge.badge-soft-secondary {
    background-color: #e2e3e5;
    color: #383d41;
    padding: 0.35em 0.65em;
}

.badge.badge-soft-info {
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 0.35em 0.65em;
}

.badge.badge-soft-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.35em 0.65em;
}

.badge.badge-soft-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 0.35em 0.65em;
}

.badge.badge-soft-primary {
    background-color: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    padding: 0.35em 0.65em;
}

/* 잔여일 임박 경고 */
.remaining-critical { color: #dc3545 !important; font-weight: 700; }
.remaining-warning  { color: #f0932b !important; font-weight: 700; }

/* 회원 목록 필터 chip */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    background-color: var(--brand-primary-soft, #e7f1ff);
    color: var(--brand-primary-dark, #0d6efd);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
    text-decoration: none;
}
.filter-chip:hover { text-decoration: none; opacity: 0.85; }
.filter-chip .chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.08);
    color: inherit;
    font-size: 0.7rem;
    line-height: 1;
}
.filter-chip .chip-remove:hover { background-color: rgba(0,0,0,0.18); }

/* 정렬 가능한 테이블 헤더 */
th.sortable a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
th.sortable a:hover { color: var(--brand-primary-dark, #0d6efd); }
th.sortable .sort-icon { opacity: 0.4; font-size: 0.75rem; }
th.sortable.sort-active .sort-icon { opacity: 1; color: var(--brand-primary, #0d6efd); }

/* 락커 그리드 */
.locker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 1rem;
}
.locker-cell {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    position: relative;
}
.locker-cell:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.locker-cell .locker-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.locker-cell .locker-size {
    font-size: 0.7rem;
    color: #6c757d;
}
.locker-cell .locker-member {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    margin-top: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.locker-cell .locker-period {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.15rem;
}
.locker-cell .locker-remaining {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.15rem;
}
.locker-cell.locker-in-use {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.06);
}
.locker-cell.locker-empty {
    border-color: #dee2e6;
    background-color: #f8f9fa;
}
.locker-cell.locker-inactive {
    border-color: #dee2e6;
    background-color: #e9ecef;
    opacity: 0.6;
}
.locker-cell.locker-broken {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.08);
}
.locker-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.locker-status-dot.dot-in-use { background-color: #28a745; }
.locker-status-dot.dot-empty { background-color: #adb5bd; }
.locker-status-dot.dot-inactive { background-color: #343a40; }
.locker-status-dot.dot-broken { background-color: #dc3545; }

/* 테이블 셀 수직 중앙 정렬 */
.table td, .table th {
    vertical-align: middle;
}

/* 회원 목록: 회원명 셀의 서브텍스트 */
.member-cell .member-name { font-weight: 700; }
.member-cell .member-sub { color: #6c757d; font-size: 0.8rem; line-height: 1.35; }
.member-cell .member-sub > span + span::before { content: ' · '; margin: 0 0.15rem; }

/* 회원 상세 상단 KPI 스트립 */
.kpi-row .kpi-item {
    border-right: 1px solid #e9ecef;
}
.kpi-row .kpi-item:last-child {
    border-right: none;
}
@media (max-width: 767.98px) {
    .kpi-row .kpi-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .kpi-row .kpi-item:last-child {
        border-bottom: none;
    }
}
.kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary-dark, #2c3e50);
    line-height: 1.2;
}
.kpi-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
    margin-left: 2px;
}

/* 상세 페이지 우측 요약 카드 - 브랜드 상단 악센트 */
.summary-card {
    border-top: 3px solid var(--brand-primary) !important;
}

.summary-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1rem !important;
}

.summary-card .card-body > .d-flex.align-items-center.mb-3 {
    margin-bottom: 0.5rem !important;
}

.summary-card .summary-body {
    flex: 1 1 auto;
}

.summary-card .summary-body .row.py-2 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.summary-card .mt-3.pt-2.border-top {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
}

/* 상세 페이지 요약 카드 하단 화살표 링크 */
.summary-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    text-decoration: none;
}

.summary-link:hover {
    color: var(--brand-primary-active);
    text-decoration: none;
}

.summary-link i {
    transition: transform 0.15s ease;
}

.summary-link:hover i {
    transform: translateX(2px);
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
}

#wrapper {
    display: flex;
    flex: 1;
}

/* ─── Bootstrap primary overrides ─────────────────────────────────── */
.btn-primary {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--brand-primary-hover) !important;
    border-color: var(--brand-primary-hover) !important;
    color: var(--brand-on-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 0, 0.35) !important;
}

.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--brand-primary-active) !important;
    border-color: var(--brand-primary-active) !important;
    color: var(--brand-on-primary) !important;
}

.btn-outline-primary {
    color: var(--brand-primary-dark) !important;
    border-color: var(--brand-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
    border-color: var(--brand-primary) !important;
}

.btn-light.text-primary {
    color: var(--brand-primary-dark) !important;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
}

.text-primary {
    color: var(--brand-primary-dark) !important;
}

.badge-primary,
.badge.badge-primary {
    background-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
}

/* Pagination active page */
.page-item.active .page-link {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
}

.page-link {
    color: var(--brand-primary-dark);
}

.page-link:hover {
    color: var(--brand-primary-active);
}

/* Form focus state */
.form-control:focus {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 0, 0.25) !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

/* ─── Card header 브랜드 액센트 ──────────────────────────────────── */
/* h6 제목: 좀 더 브랜드스러운 앰버 톤 */
.card-header h6.text-primary,
.card-header .font-weight-bold.text-primary {
    color: var(--brand-primary-active) !important;
}

/* 아이콘(fas/fa/far)은 원색 브랜드 컬러로 강조 */
.card-header i.text-primary,
.card-header .fas.text-primary,
.card-header .fa.text-primary,
.card-header .far.text-primary {
    color: var(--brand-primary) !important;
}

/* 카드 상단에 얇은 브랜드 색 보더로 구분감 */
.card:not(.bg-primary) > .card-header {
    border-bottom: 2px solid var(--brand-primary-soft) !important;
}

/* list-group active 항목도 브랜드 컬러로 */
.list-group-item.active {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
}

/* list-group-item hover에 브랜드 soft 적용 */
.list-group-item-action:hover:not(.active) {
    background-color: var(--brand-primary-soft) !important;
}

/* ─── 회원 상세 등 폼 섹션 제목 ──────────────────────────────────── */
.info-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary-active);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-primary-soft);
}

/* ─── Select2 Bootstrap 4 호환 스타일 ──────────────────────────────── */
.select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 10px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 20px;
    line-height: 1.6;
    color: #495057;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 0, 0.25);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--brand-primary) !important;
    color: var(--brand-on-primary) !important;
}
.select2-dropdown {
    border-color: var(--brand-primary);
    border-radius: 8px;
}
/* 모달 내부 z-index 보정 */
.select2-container--open {
    z-index: 9999;
}

/* ─── FullCalendar 요일 색상 (평일 검정/토 파랑/일 빨강) ───────────── */
.fc .fc-col-header-cell a,
.fc .fc-daygrid-day-number {
    color: #1f2937; /* 평일 검정 계열 */
    text-decoration: none;
}

.fc .fc-col-header-cell.fc-day-sat a,
.fc .fc-daygrid-day.fc-day-sat .fc-daygrid-day-number {
    color: #1d4ed8 !important; /* 토요일 파랑 */
}

.fc .fc-col-header-cell.fc-day-sun a,
.fc .fc-daygrid-day.fc-day-sun .fc-daygrid-day-number {
    color: #dc2626 !important; /* 일요일 빨강 */
}

/* timeGrid에서 상단 날짜 숫자에도 동일 적용 */
.fc .fc-col-header-cell.fc-day-sat .fc-col-header-cell-cushion,
.fc .fc-col-header-cell.fc-day-sat .fc-col-header-cell-cushion * {
    color: #1d4ed8 !important;
}
.fc .fc-col-header-cell.fc-day-sun .fc-col-header-cell-cushion,
.fc .fc-col-header-cell.fc-day-sun .fc-col-header-cell-cushion * {
    color: #dc2626 !important;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(244, 208, 0, 0.25) !important;
}

/* Links */
a {
    color: var(--brand-primary-dark);
}

a:hover {
    color: var(--brand-primary-active);
}

/* Sidebar Styling (dark base + brand accents) */
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background-color: #2c3e50;
    color: #ecf0f1;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

#sidebar .sidebar-header {
    padding: 25px 20px;
    background: var(--brand-primary);
    text-align: center;
}

#sidebar .sidebar-header a {
    text-decoration: none;
    color: #fff;
}

#sidebar .sidebar-header h3 {
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* 로고의 "STADION" 글자 일부를 브랜드로 포인트 처리하고 싶다면 템플릿에서 <span class="brand-accent"> 처리 */
#sidebar .sidebar-header .brand-accent {
    color: var(--brand-primary);
}

#sidebar .user-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#sidebar .user-avatar {
    margin-right: 15px;
    color: var(--brand-primary); /* 브랜드 accent */
}

#sidebar .user-details p {
    margin: 0;
}

#sidebar .user-details .welcome-text {
    font-size: 0.8em;
    opacity: 0.7;
}

#sidebar .user-details .user-name {
    font-weight: 600;
    font-size: 1em;
}

#sidebar ul.components {
    padding: 10px 0;
    flex: 1;
    overflow-y: auto;
}

#sidebar ul li a {
    padding: 12px 20px;
    font-size: 0.95em;
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

#sidebar ul li a i {
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #34495e;
}

#sidebar ul li.active > a {
    color: #fff;
    background: rgba(244, 208, 0, 0.15); /* 브랜드 틴트로 배경과 구분 */
    border-left: 3px solid var(--brand-primary);
    font-weight: 600;
}

#sidebar ul ul a {
    font-size: 0.85em !important;
    padding-left: 40px !important;
    background: #1a252f;
}

#sidebar ul ul a:hover {
    background: #2c3e50 !important;
    color: #fff;
}

#sidebar ul ul li.active > a {
    background: rgba(244, 208, 0, 0.2) !important; /* 서브메뉴 active: 브랜드 틴트 (더 진하게) */
    color: var(--brand-primary) !important;
    border-left: 3px solid var(--brand-primary);
    font-weight: 600;
}

#sidebar ul.components ul {
    display: none;
    list-style: none;
    padding: 0;
}

#sidebar ul.components li.active ul {
    display: block;
}

#sidebar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    float: right;
    transition: transform 0.3s;
}

#sidebar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
}

#sidebar .sidebar-footer {
    padding: 15px 20px;
    background: #1a252f;
}

#sidebar .btn-logout {
    width: 100%;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.2s;
}

#sidebar .btn-logout:hover {
    background: #c0392b;
}

/* Content Styling */
#content {
    width: 100%;
    padding: 30px;
    min-height: 100vh;
    transition: all 0.3s;
    background-color: #f8f9fc;
}

/* Card Styling */
.search-card, .table-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 25px;
    border: none;
}

.search-card {
    padding: 20px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.search-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.search-item label i {
    margin-right: 5px;
}

.search-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e3e6f0;
}

.btn-search-submit {
    background-color: var(--brand-primary);
    color: var(--brand-on-primary);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-search-reset {
    background-color: #eaecf4;
    color: #5a5c69;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.btn-search-reset:hover {
    background-color: #dddfeb;
    color: #5a5c69;
    text-decoration: none;
}

/* Table Styling */
.table-card .table thead th {
    background-color: #f8f9fc;
    border-bottom: 2px solid #e3e6f0;
    color: var(--brand-primary-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 15px;
}

.table-card .table tbody td {
    padding: 15px;
    vertical-align: middle;
    color: #5a5c69;
}

/* Badge Styling */
.badge-soft-primary {
    background-color: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
}

.badge-soft-info {
    background-color: rgba(54, 185, 204, 0.1);
    color: #36b9cc;
}

.badge-soft-success {
    background-color: rgba(28, 200, 138, 0.1);
    color: #1cc88a;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--brand-primary-dark);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #858796;
}

/* ─── Dashboard KPI ─────────────────────────────────────────────── */
.dashboard-header h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1f2937;
}

.kpi-card {
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
    overflow: hidden;
}

.kpi-card:hover {
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.kpi-card .card-body {
    padding: 1.1rem 1.25rem 0.6rem;
}

.kpi-card .kpi-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.kpi-card .kpi-value {
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.kpi-card .kpi-value .unit {
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
    margin-left: 2px;
}

.kpi-card .kpi-meta {
    font-size: 0.74rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.kpi-card .kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 6px;
    margin-right: 4px;
}

.kpi-card .kpi-trend.up { background: rgba(16, 185, 129, 0.12); color: #047857; }
.kpi-card .kpi-trend.down { background: rgba(239, 68, 68, 0.12); color: #b91c1c; }
.kpi-card .kpi-trend.flat { background: rgba(107, 114, 128, 0.12); color: #4b5563; }

.kpi-card .kpi-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.kpi-card .kpi-icon.icon-blue   { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.kpi-card .kpi-icon.icon-green  { background: rgba(16, 185, 129, 0.12); color: #047857; }
.kpi-card .kpi-icon.icon-gold   { background: var(--brand-primary-soft); color: var(--brand-primary-dark); }
.kpi-card .kpi-icon.icon-purple { background: rgba(139, 92, 246, 0.12); color: #6d28d9; }

.kpi-card .kpi-spark {
    margin: 0 -1.25rem -0.6rem;
    padding-top: 4px;
}

.kpi-card .kpi-spark canvas {
    display: block;
    width: 100% !important;
    height: 48px !important;
}

.dashboard-section-card {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.dashboard-section-card .card-header {
    background: transparent;
    border-bottom: 1px solid #f1f3f5;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.2px;
}

.dashboard-section-card .card-header .header-meta {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    margin-left: 8px;
}

.dashboard-section-card .card-body {
    padding: 1rem 1.25rem;
}
