.auth-page {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #a5d6a7);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: white;
    border-radius: 30px;
    padding: 45px 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.auth-logo span {
    color: #2e7d32;
}

.auth-logo i {
    color: #2e7d32;
    margin-right: 8px;
}

.auth-subtitle {
    color: #888;
    font-size: 14px;
    margin-top: 4px;
}

.auth-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.auth-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form .form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    margin-bottom: 6px;
}

.auth-form .form-group label i {
    color: #2e7d32;
    margin-right: 8px;
    width: 18px;
}

.auth-form .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8eaed;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: 'Poppins', sans-serif;
}

.auth-form .form-group input:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
    outline: none;
    background: white;
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 25px rgba(46, 125, 50, 0.25);
}

.btn-auth:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(46, 125, 50, 0.35);
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #888;
    font-size: 14px;
}

.auth-footer a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.dashboard-user {
    background: #b4b1b123;
    padding-top: 90px;
}

.user-dashboard {
    padding: 40px 8% 60px;
}

.dashboard-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-greeting {
    margin-bottom: 35px;
    padding: 30px 35px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.dashboard-greeting h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.dashboard-greeting p {
    color: #888;
    font-size: 16px;
    margin-top: 5px;
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.user-stat-card {
    background: white;
    border-radius: 20px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.user-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.user-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.user-stat-card.stat-total .stat-icon {
    background: #e3f2fd;
    color: #0d47a1;
}

.user-stat-card.stat-pending .stat-icon {
    background: #fff3e0;
    color: #e65100;
}

.user-stat-card.stat-done .stat-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.user-stat-card.stat-rejected .stat-icon {
    background: #ffebee;
    color: #c62828;
}

.user-stat-card .stat-info {
    display: flex;
    flex-direction: column;
}

.user-stat-card .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.user-stat-card .stat-label {
    font-size: 14px;
    color: #888;
}

.user-table-container {
    background: white;
    border-radius: 24px;
    padding: 25px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.user-table-container .table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.user-table-container .table-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.user-table-container .table-header h2 i {
    color: #2e7d32;
    margin-right: 10px;
}

.user-table-container .table-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.user-table-container .table-actions .total-data {
    font-size: 14px;
    color: #888;
}

.user-table-container .table-actions .total-data strong {
    color: #1a1a1a;
}

.table-responsive {
    overflow-x: auto;
}

.user-table-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.user-table-container table thead {
    background: #f8f9fa;
    border-radius: 12px;
}

.user-table-container table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #e8eaed;
}

.user-table-container table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    vertical-align: middle;
}

.user-table-container table tbody tr:hover {
    background: #f8fafc;
}

.user-table-container table tbody tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.status-done {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-rejected {
    background: #ffebee;
    color: #c62828;
}

.empty-row {
    text-align: center;
    padding: 60px 20px !important;
    color: #888;
}

.empty-row i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 12px;
}

.empty-row p {
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-empty-konsultasi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-empty-konsultasi:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    color: white;
}

.msg-cell {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}

@media(max-width: 992px) {
    .user-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .auth-card {
        padding: 30px 25px;
    }

    .dashboard-greeting h1 {
        font-size: 26px;
    }

    .user-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .user-stat-card {
        padding: 16px 18px;
    }

    .user-stat-card .stat-number {
        font-size: 24px;
    }

    .user-table-container {
        padding: 15px;
        border-radius: 16px;
    }

    .user-table-container table {
        font-size: 12px;
    }

    .user-table-container table th,
    .user-table-container table td {
        padding: 10px 12px;
    }

    .user-table-container .table-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-konsultasi-baru {
        padding: 8px 16px;
        font-size: 13px;
    }

    .user-dashboard {
        padding: 20px 5% 40px;
    }

    .dashboard-greeting {
        padding: 20px;
    }
}

@media(max-width: 480px) {
    .user-stats {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 25px 18px;
    }

    .auth-logo {
        font-size: 26px;
    }

    .btn-auth {
        font-size: 15px;
        padding: 14px;
    }
}

.dark .dashboard-greeting {
    background: #1f1f1f;
    border-color: #333;
}

.dark .dashboard-greeting h1 {
    color: white;
}

.dark .dashboard-greeting p {
    color: #aaa;
}

.dark .user-stat-card {
    background: #1f1f1f;
    border-color: #333;
}

.dark .user-stat-card .stat-number {
    color: white;
}

.dark .user-stat-card .stat-label {
    color: #aaa;
}

.dark .user-table-container {
    background: #1f1f1f;
    border-color: #333;
}

.dark .user-table-container .table-header h2 {
    color: white;
}

.dark .user-table-container table thead {
    background: #2a2a2a;
}

.dark .user-table-container table th {
    color: #aaa;
    border-bottom-color: #444;
}

.dark .user-table-container table td {
    color: #ddd;
    border-bottom-color: #333;
}

.dark .user-table-container table tbody tr:hover {
    background: #2a2a2a;
}

.dark .msg-cell {
    color: #aaa;
}

.dark .empty-row i {
    color: #444;
}

.dark .empty-row p {
    color: #aaa;
}

.dark .btn-konsultasi-baru {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.dark .btn-konsultasi-baru:hover {
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.dark .btn-empty-konsultasi {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.dark .btn-empty-konsultasi:hover {
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.btn-view-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #2196F3;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-detail:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.last-reply-preview {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.last-reply-preview i {
    color: #2196F3;
}

.dark .last-reply-preview {
    color: #888;
}

.dark .btn-view-detail {
    background: #1565C0;
}

.dark .btn-view-detail:hover {
    background: #0D47A1;
}

.admin-reply-preview {
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #0d47a1;
    border-left: 3px solid #2196F3;
    max-width: 250px;
    line-height: 1.4;
}

.admin-reply-preview i {
    margin-right: 6px;
}

.no-reply {
    color: #999;
    font-size: 13px;
}

.dark .admin-reply-preview {
    background: #1a2a3a;
    color: #64b5f6;
    border-left-color: #42a5f5;
}

.dark .no-reply {
    color: #666;
}

.dark .btn-view-detail {
    background: #1565C0;
}

.dark .btn-view-detail:hover {
    background: #0D47A1;
}

@media(max-width: 768px) {
    .admin-reply-preview {
        max-width: 150px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.avatar-initial {
    text-transform: uppercase;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(46, 125, 50, 0.08);
}

.profile-trigger .dropdown-arrow {
    color: #888;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.profile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    right: 0;
    background: white;
    min-width: 260px;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 8px;
}

.dropdown-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.dropdown-avatar-initial {
    text-transform: uppercase;
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
}

.dropdown-user-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.dropdown-user-email {
    font-size: 13px;
    color: #888;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 16px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f5f7fa;
    color: #2e7d32;
}

.dropdown-item i {
    width: 20px;
    font-size: 16px;
    color: #888;
}

.dropdown-item:hover i {
    color: #2e7d32;
}

.dropdown-item.active-dropdown {
    background: #e8f5e9;
    color: #2e7d32;
}

.dropdown-item.active-dropdown i {
    color: #2e7d32;
}

.dropdown-logout {
    color: #e74c3c;
}

.dropdown-logout:hover {
    background: #ffebee;
    color: #c62828;
}

.dropdown-logout:hover i {
    color: #c62828;
}

.dark .dropdown-menu {
    background: #1f1f1f;
    border-color: #333;
}

.dark .dropdown-user-name {
    color: white;
}

.dark .dropdown-user-email {
    color: #888;
}

.dark .dropdown-divider {
    background: #333;
}

.dark .dropdown-item {
    color: #ddd;
}

.dark .dropdown-item:hover {
    background: #2a2a2a;
    color: #66bb6a;
}

.dark .dropdown-item i {
    color: #888;
}

.dark .dropdown-item:hover i {
    color: #66bb6a;
}

.dark .dropdown-item.active-dropdown {
    background: #1a2a1a;
    color: #66bb6a;
}

.dark .dropdown-item.active-dropdown i {
    color: #66bb6a;
}

.dark .dropdown-logout {
    color: #ef5350;
}

.dark .dropdown-logout:hover {
    background: #2a1a1a;
    color: #ef5350;
}

.dark .dropdown-logout:hover i {
    color: #ef5350;
}

.dark .profile-trigger:hover {
    background: rgba(102, 187, 106, 0.1);
}

.dark .profile-trigger .dropdown-arrow {
    color: #888;
}

@media(max-width: 768px) {
    .profile-dropdown {
        order: 2;
    }

    .dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        min-width: unset;
        padding-bottom: 20px;
    }

    .profile-dropdown.active .dropdown-menu {
        transform: translateY(0);
    }

    .dropdown-menu::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 10px;
        margin: 8px auto 0;
    }

    .dark .dropdown-menu::before {
        background: #444;
    }
}

.dark.dashboard-user {
    background: linear-gradient(145deg, #0a0f0a 0%, #121212 40%, #0d1a0d 100%) !important;
    min-height: 100vh;
    position: relative;
}

.dark.dashboard-user::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 15% 40%, rgba(46, 125, 50, 0.08) 0%, transparent 50%), radial-gradient(circle at 85% 60%, rgba(102, 187, 106, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.dark .dashboard-greeting {
    background: #1f1f1f !important;
    border-color: #333 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.dark .dashboard-greeting h1 {
    color: #ffffff !important;
}

.dark .dashboard-greeting p {
    color: #aaaaaa !important;
}

.dark .user-stat-card {
    background: #1f1f1f !important;
    border-color: #333 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.dark .user-stat-card .stat-number {
    color: #ffffff !important;
}

.dark .user-stat-card .stat-label {
    color: #aaaaaa !important;
}

.dark .user-stat-card.stat-total .stat-icon {
    background: rgba(13, 71, 161, 0.3) !important;
    color: #64b5f6 !important;
}

.dark .user-stat-card.stat-pending .stat-icon {
    background: rgba(230, 81, 0, 0.3) !important;
    color: #ff8a65 !important;
}

.dark .user-stat-card.stat-done .stat-icon {
    background: rgba(46, 125, 50, 0.3) !important;
    color: #66bb6a !important;
}

.dark .user-stat-card.stat-rejected .stat-icon {
    background: rgba(198, 40, 40, 0.3) !important;
    color: #ef5350 !important;
}

.dark .user-table-container {
    background: #1f1f1f !important;
    border-color: #333 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.dark .user-table-container .table-header h2 {
    color: #ffffff !important;
}

.dark .user-table-container .table-header h2 i {
    color: #66bb6a !important;
}

.dark .user-table-container .table-actions .total-data {
    color: #888 !important;
}

.dark .user-table-container .table-actions .total-data strong {
    color: #ffffff !important;
}

.dark .user-table-container table thead {
    background: #2a2a2a !important;
}

.dark .user-table-container table th {
    color: #aaaaaa !important;
    border-bottom-color: #444 !important;
}

.dark .user-table-container table td {
    color: #dddddd !important;
    border-bottom-color: #333 !important;
}

.dark .user-table-container table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.dark .status-pending {
    background: rgba(230, 81, 0, 0.25) !important;
    color: #ff8a65 !important;
}

.dark .status-done {
    background: rgba(46, 125, 50, 0.25) !important;
    color: #66bb6a !important;
}

.dark .status-rejected {
    background: rgba(198, 40, 40, 0.25) !important;
    color: #ef5350 !important;
}

.dark .btn-back-home {
    background: #1f1f1f !important;
    border-color: #444 !important;
    color: #66bb6a !important;
}

.dark .btn-back-home:hover {
    background: #1a2a1a !important;
    border-color: #66bb6a !important;
}

.dark .btn-konsultasi-baru {
    background: linear-gradient(135deg, #1b5e20, #2e7d32) !important;
}

.dark .btn-konsultasi-baru:hover {
    background: linear-gradient(135deg, #2e7d32, #43a047) !important;
}

.dark .btn-empty-konsultasi {
    background: linear-gradient(135deg, #1b5e20, #2e7d32) !important;
}

.dark .btn-empty-konsultasi:hover {
    background: linear-gradient(135deg, #2e7d32, #43a047) !important;
}

.dark .btn-view-detail {
    background: #1565C0 !important;
}

.dark .btn-view-detail:hover {
    background: #0D47A1 !important;
}

.dark .empty-row i {
    color: #444 !important;
}

.dark .empty-row p {
    color: #aaa !important;
}

.dark .msg-cell {
    color: #aaa !important;
}

.dark .admin-reply-preview {
    background: rgba(26, 42, 58, 0.8) !important;
    color: #64b5f6 !important;
    border-left-color: #42a5f5 !important;
}

.dark .no-reply {
    color: #666 !important;
}

.dark .dropdown-menu {
    background: #1f1f1f !important;
    border-color: #333 !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5) !important;
}

.dark .dropdown-user-name {
    color: #ffffff !important;
}

.dark .dropdown-user-email {
    color: #888 !important;
}

.dark .dropdown-divider {
    background: #333 !important;
}

.dark .dropdown-item {
    color: #dddddd !important;
}

.dark .dropdown-item:hover {
    background: #2a2a2a !important;
    color: #66bb6a !important;
}

.dark .dropdown-item i {
    color: #888 !important;
}

.dark .dropdown-item:hover i {
    color: #66bb6a !important;
}

.dark .dropdown-item.active-dropdown {
    background: rgba(46, 125, 50, 0.15) !important;
    color: #66bb6a !important;
}

.dark .dropdown-item.active-dropdown i {
    color: #66bb6a !important;
}

.dark .dropdown-logout {
    color: #ef5350 !important;
}

.dark .dropdown-logout:hover {
    background: rgba(239, 83, 80, 0.1) !important;
    color: #ef5350 !important;
}

.dark .dropdown-logout:hover i {
    color: #ef5350 !important;
}

.dark .profile-trigger:hover {
    background: rgba(102, 187, 106, 0.1) !important;
}

.dark .profile-trigger .dropdown-arrow {
    color: #888 !important;
}

.dark .user-table-container table tbody tr {
    background: rgba(31, 31, 31, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
}

.dark .user-table-container table td[data-label]::before {
    color: #aaa !important;
}

.dark header {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333 !important;
}

.dark .logo {
    color: #ffffff !important;
}

.dark .logo span {
    color: #ff6637 !important;
}

.dark .logo i {
    color: #66bb6a !important;
}

.dark #dark {
    color: #d0d0d0 !important;
}

.dark #dark:hover {
    background: rgba(102, 187, 106, 0.15) !important;
    color: #66bb6a !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.quick-action-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 22px 25px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-action-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-action-card h2 i {
    font-size: 20px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.quick-action-btn:hover::before {
    opacity: 1;
}

.quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

.quick-action-btn:hover .quick-icon {
    transform: scale(1.1) rotate(-5deg);
}

.quick-info {
    flex: 1;
}

.quick-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.quick-desc {
    display: block;
    font-size: 12px;
    color: #888;
}

.quick-arrow {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick-action-btn:hover .quick-arrow {
    transform: translateX(5px);
    color: #2e7d32;
}

.action-consult {
    background: rgba(232, 245, 233, 0.5);
}

.action-consult .quick-icon {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

.action-consult:hover {
    background: rgba(46, 125, 50, 0.1);
    border-color: #2e7d32;
}

.action-history {
    background: rgba(227, 242, 253, 0.5);
}

.action-history .quick-icon {
    background: rgba(13, 71, 161, 0.15);
    color: #0d47a1;
}

.action-history:hover {
    background: rgba(13, 71, 161, 0.1);
    border-color: #0d47a1;
}

.action-calculator {
    background: rgba(255, 243, 224, 0.5);
}

.action-calculator .quick-icon {
    background: rgba(230, 81, 0, 0.15);
    color: #e65100;
}

.action-calculator:hover {
    background: rgba(230, 81, 0, 0.1);
    border-color: #e65100;
}

.action-tambah {
    background: rgba(13, 71, 161, 0.08) !important;
    border-color: rgba(13, 71, 161, 0.15) !important;
}

.action-tambah .quick-icon {
    background: rgba(13, 71, 161, 0.15);
    color: #0d47a1;
}

.action-tambah:hover {
    background: rgba(13, 71, 161, 0.15) !important;
    border-color: #0d47a1 !important;
}

.action-turun {
    background: rgba(230, 81, 0, 0.08) !important;
    border-color: rgba(230, 81, 0, 0.15) !important;
}

.action-turun .quick-icon {
    background: rgba(230, 81, 0, 0.15);
    color: #e65100;
}

.action-turun:hover {
    background: rgba(230, 81, 0, 0.15) !important;
    border-color: #e65100 !important;
}

.action-timer {
    background: rgba(46, 125, 50, 0.08) !important;
    border: 1px solid rgba(46, 125, 50, 0.1) !important;
}

.action-timer .quick-icon {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

.action-timer:hover {
    background: rgba(46, 125, 50, 0.15) !important;
    border-color: #2e7d32 !important;
}

.action-netral {
    background: rgba(46, 125, 50, 0.08) !important;
    border-color: rgba(46, 125, 50, 0.15) !important;
}

.action-netral .quick-icon {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

.action-netral:hover {
    background: rgba(46, 125, 50, 0.15) !important;
    border-color: #2e7d32 !important;
}

.tips-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 22px 25px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.tips-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 243, 224, 0.3);
    border-radius: 16px;
    border-left: 4px solid #f5a623;
}

.tips-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.tips-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.tips-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tips-refresh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 13px;
    color: #888;
}

.tips-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tips-refresh-btn:hover {
    background: #2e7d32;
    color: white;
    transform: rotate(10deg);
}

.tips-refresh-btn i {
    transition: all 0.5s ease;
}

.tips-refresh-btn:hover i {
    transform: rotate(360deg);
}

.dark .quick-action-card {
    background: rgba(31, 31, 31, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark .quick-action-card h2 {
    color: #ffffff;
}

.dark .quick-action-btn {
    border-color: rgba(255, 255, 255, 0.04);
}

.dark .quick-title {
    color: #ffffff;
}

.dark .quick-desc {
    color: #888;
}

.dark .action-consult {
    background: rgba(46, 125, 50, 0.15);
}

.dark .action-consult:hover {
    background: rgba(46, 125, 50, 0.25);
    border-color: #66bb6a;
}

.dark .action-history {
    background: rgba(13, 71, 161, 0.15);
}

.dark .action-history:hover {
    background: rgba(13, 71, 161, 0.25);
    border-color: #64b5f6;
}

.dark .action-calculator {
    background: rgba(230, 81, 0, 0.15);
}

.dark .action-calculator:hover {
    background: rgba(230, 81, 0, 0.25);
    border-color: #ff8a65;
}

.dark .action-tambah {
    background: rgba(13, 71, 161, 0.15);
}

.dark .action-tambah:hover {
    background: rgba(13, 71, 161, 0.25);
    border-color: #64b5f6;
}

.dark .action-turun {
    background: rgba(230, 81, 0, 0.15);
}

.dark .action-turun:hover {
    background: rgba(230, 81, 0, 0.25);
    border-color: #ff8a65;
}

.dark .action-timer {
    background: rgba(46, 125, 50, 0.15);
}

.dark .action-timer:hover {
    background: rgba(46, 125, 50, 0.25);
    border-color: #66bb6a;
}

.dark .tips-card {
    background: rgba(31, 31, 31, 0.85);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark .tips-card h2 {
    color: #ffffff;
}

.dark .tips-content {
    background: rgba(255, 243, 224, 0.08);
}

.dark .tips-text h3 {
    color: #ffffff;
}

.dark .tips-text p {
    color: #aaaaaa;
}

.dark .tips-refresh {
    border-top-color: rgba(255, 255, 255, 0.05);
    color: #888;
}

.dark .tips-refresh-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
}

.dark .tips-refresh-btn:hover {
    background: #2e7d32;
    color: white;
}

@media(max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .quick-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-action-btn {
        padding: 12px 14px;
        gap: 10px;
    }

    .quick-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .quick-title {
        font-size: 13px;
    }

    .quick-desc {
        font-size: 11px;
    }

    .tips-content {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tips-icon {
        font-size: 32px;
    }
}

@media(max-width: 480px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }

    .quick-action-card,
    .tips-card {
        padding: 16px 18px;
    }

    .quick-action-card h2,
    .tips-card h2 {
        font-size: 16px;
    }
}

.btn-home-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    background: none;
    border: none;
}

.btn-home-header:hover {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    transform: scale(1.05);
}

.dark .btn-home-header {
    color: #d0d0d0;
}

.dark .btn-home-header:hover {
    background: rgba(102, 187, 106, 0.15);
    color: #66bb6a;
}

@media(max-width: 480px) {
    .btn-home-header {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.program-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 25px;
    border-left: 5px solid #2e7d32;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.program-banner-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.program-banner-content {
    flex: 1;
}

.program-banner-label {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-banner-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.program-banner-desc {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

.program-banner-btn {
    padding: 8px 20px;
    background: #2e7d32;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-banner-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.dark .program-banner {
    background: rgba(31, 31, 31, 0.85);
}

.dark .program-banner-name {
    color: #ffffff;
}

.dark .program-banner-desc {
    color: #aaaaaa;
}

.dark .program-banner-label {
    color: #888888;
}

@media (max-width: 480px) {
    .program-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .program-banner-btn {
        width: 100%;
        text-align: center;
    }
}