        :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        --card-hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        body {
        background: #f8f9fa;
        }

        /* Hero Banner Slider */
        .hero-modern-slider {
        background: var(--primary-gradient);
        border-radius: 0 0 24px 24px;
        padding: 20px 0 30px;
        margin-bottom: -20px;
        }

        .hero-slider-wrapper {
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;
        }

        .single-hero-slide {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        }

        .single-hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6)); */
        }

        .slide-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        }

        .slide-text h4 {
        font-size: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .balance-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .balance-card h6 {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.85rem;
        margin-bottom: 8px;
        }

        .balance-card h3 {
        color: white;
        font-weight: 700;
        margin: 0;
        }

        /* Quick Actions */
        .quick-actions {
        background: white;
        border-radius: 20px;
        padding: 20px;
        margin: 30px 0 20px;
        box-shadow: var(--card-shadow);
        }

        .action-btn {
        text-align: center;
        text-decoration: none;
        display: block;
        }

        .action-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        transition: transform 0.3s ease;
        }

        .action-icon i {
        color: white;
        font-size: 24px;
        }

        .action-btn:hover .action-icon {
        transform: translateY(-4px);
        }

        .action-label {
        font-size: 0.75rem;
        color: #333;
        font-weight: 500;
        }

        /* Service Grid */
        .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
        }

        .service-item {
        background: white;
        border-radius: 16px;
        padding: 16px 12px;
        text-align: center;
        text-decoration: none;
        box-shadow: var(--card-shadow);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        }

        .service-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-hover-shadow);
        }

        .service-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        /* FIXED: Icon styling - gunakan Font Awesome sebagai fallback */
        .service-icon i {
        color: white;
        font-size: 24px;
        }

        .service-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        }

        /* REMOVED: filter yang membuat icon tidak terlihat */

        .service-name {
        font-size: 0.7rem;
        color: #333;
        font-weight: 500;
        line-height: 1.3;
        }

        /* Info Cards Slider */
        .info-slider-wrapper {
        margin-top: 20px;
        }

        .info-card-slide {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        padding: 24px;
        color: white;
        margin: 0 6px;
        box-shadow: var(--card-shadow);
        min-height: 180px;
        }

        .info-card-slide .discountIcon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        flex-shrink: 0;
        }

        .info-card-slide .discountIcon i {
        color: white;
        font-size: 28px;
        }

        .info-card-slide .discountIcon img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        }

        .info-card-slide h5 {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 1.1rem;
        }

        .info-card-slide p {
        font-size: 0.85rem;
        opacity: 0.95;
        line-height: 1.5;
        }

        /* Stats Cards */
        .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
        }

        .stat-card {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: var(--card-shadow);
        }

        .stat-label {
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 8px;
        }

        .stat-value {
        font-size: 1.75rem;
        font-weight: 700;
        color: #333;
        }

        .stat-bar {
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
        margin-top: 12px;
        overflow: hidden;
        }

        .stat-bar-fill {
        height: 100%;
        border-radius: 2px;
        transition: width 0.6s ease;
        }

        /* Login Card */
        .login-modern {
        background: white;
        border-radius: 24px;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin: 30px 0;
        }

        .login-modern .form-control {
        border-radius: 12px;
        padding: 12px 16px;
        border: 1px solid #e0e0e0;
        }

        .login-modern .btn-primary {
        background: var(--primary-gradient);
        border: none;
        border-radius: 12px;
        padding: 14px;
        font-weight: 600;
        }

        .social-btn {
        border-radius: 12px;
        padding: 12px;
        font-weight: 500;
        }

        /* Section Headers */
        .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        }

        .section-title {
        font-size: 1rem;
        font-weight: 700;
        color: #333;
        margin: 0;
        }

        /* Owl Carousel Custom */
        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9) !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
        }

        .owl-carousel .owl-nav button.owl-next {
        right: 10px;
        }

        .owl-carousel .owl-dots {
        margin-top: 12px;
        }

        .owl-carousel .owl-dot span {
        background: rgba(255, 255, 255, 0.5);
        }

        .owl-carousel .owl-dot.active span {
        background: white;
        }

        /* Responsive */
        @media (min-width: 768px) {
        .service-grid {
        grid-template-columns: repeat(5, 1fr);
        }

        .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        }

        .single-hero-slide {
        height: 250px;
        }
        }
        .setting-page-wrapper {
        background: #f8f9fa;
        min-height: 100vh;
        padding-bottom: 80px;
        }

        /* Profile Header */
        .setting-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px 0 80px;
        margin-bottom: -50px;
        border-radius: 0 0 24px 24px;
        position: relative;
        }

        .setting-avatar-card {
        background: white;
        border-radius: 24px;
        padding: 30px 20px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        }


        * {
        box-sizing: border-box;
        }

        body {
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .notif-detail-page-container {
        background: #f8f9fa;
        min-height: 100vh;
        padding-bottom: 30px;
        }

        /* Detail Header */
        .notif-detail-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px 0 30px;
        border-radius: 0 0 24px 24px;
        position: relative;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .notif-detail-header h5 {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0 0 8px 0;
        text-align: center;
        }

        .notif-detail-header p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
        margin: 0 0 0 0;
        text-align: center;
        }

        /* Content spacing */
        .notif-detail-content-spacing {
        padding-top: 0;
        margin-top: -24px;
        position: relative;
        z-index: 2;
        }

        /* Detail Card */
        .notif-detail-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        overflow: hidden;
        margin-bottom: 20px;
        }

        .notif-detail-card-header {
        background: transparent;
        color: #333;
        padding: 20px 20px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #f0f0f0;
        }

        .notif-detail-card-header i {
        font-size: 1.1rem;
        color: #667eea;
        }

        .notif-detail-card-header h6 {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
        }

        .notif-detail-card-body {
        padding: 20px;
        }

        /* Detail Item */
        .notif-detail-item {
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
        }

        .notif-detail-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        }

        .notif-detail-item:first-child {
        padding-top: 0;
        }

        .notif-detail-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
        }

        .notif-detail-label i {
        font-size: 0.85rem;
        color: #667eea;
        }

        .notif-detail-value {
        font-size: 0.95rem;
        color: #333;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        }

        .notif-detail-value-highlight {
        color: #667eea;
        font-weight: 600;
        }

        /* Message Box */
        .notif-detail-message-box {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        border-left: 4px solid #667eea;
        padding: 16px;
        border-radius: 8px;
        }

        /* Attachment Button */
        .notif-detail-attachment-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        }

        .notif-detail-attachment-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
        color: white;
        }

        .notif-detail-attachment-btn:active {
        transform: scale(0.98);
        }

        .notif-detail-attachment-btn i {
        font-size: 1rem;
        }

        .notif-detail-no-attachment {
        color: #999;
        font-style: italic;
        display: flex;
        align-items: center;
        gap: 8px;
        }

        .notif-detail-no-attachment i {
        font-size: 1rem;
        color: #ccc;
        }

        /* Action Button */
        .notif-detail-action-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        margin-top: 20px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        }

        .notif-detail-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
        color: white;
        }

        .notif-detail-action-btn:active {
        transform: scale(0.98);
        }

        /* Safe area support */
        @supports (padding: max(0px)) {
        .notif-detail-header {
        padding-left: max(0, env(safe-area-inset-left));
        padding-right: max(0, env(safe-area-inset-right));
        }
        }

        /* Responsive - Mobile */
        @media (max-width: 576px) {
        .notif-detail-page-container {
        padding-bottom: 20px;
        }

        .notif-detail-header {
        padding: 24px 16px 24px;
        border-radius: 0 0 20px 20px;
        }

        .notif-detail-header h5 {
        font-size: 1.3rem;
        margin-bottom: 4px;
        }

        .notif-detail-header p {
        font-size: 0.8rem;
        }

        .notif-detail-content-spacing {
        padding: 0 12px;
        margin-top: -14px;
        }

        .notif-detail-card {
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        margin-bottom: 16px;
        }

        .notif-detail-card-header {
        padding: 14px 16px 12px;
        gap: 8px;
        border-bottom: 1px solid #f5f5f5;
        }

        .notif-detail-card-header i {
        font-size: 1rem;
        }

        .notif-detail-card-header h6 {
        font-size: 0.9rem;
        }

        .notif-detail-card-body {
        padding: 16px;
        }

        .notif-detail-item {
        padding: 12px 0;
        }

        .notif-detail-item:first-child {
        padding-top: 0;
        }

        .notif-detail-label {
        font-size: 0.7rem;
        margin-bottom: 6px;
        gap: 5px;
        }

        .notif-detail-label i {
        font-size: 0.8rem;
        }

        .notif-detail-value {
        font-size: 0.9rem;
        }

        .notif-detail-message-box {
        padding: 12px 14px;
        border-left-width: 3px;
        border-radius: 7px;
        }

        .notif-detail-attachment-btn {
        padding: 9px 16px;
        font-size: 0.8rem;
        gap: 6px;
        width: 100%;
        justify-content: center;
        border-radius: 9px;
        }

        .notif-detail-attachment-btn:hover {
        transform: none;
        }

        .notif-detail-attachment-btn:active {
        background: linear-gradient(135deg, #5668d0 0%, #6a3f93 100%);
        }

        .notif-detail-action-btn {
        padding: 12px;
        font-size: 0.9rem;
        gap: 6px;
        margin-top: 16px;
        border-radius: 10px;
        }

        .notif-detail-action-btn:hover {
        transform: none;
        }

        .notif-detail-action-btn:active {
        background: linear-gradient(135deg, #5668d0 0%, #6a3f93 100%);
        }

        .notif-detail-no-attachment {
        gap: 6px;
        }

        .notif-detail-no-attachment i {
        font-size: 0.9rem;
        }
        }

        /* Tablet & Desktop */
        @media (min-width: 577px) {
        .notif-detail-content-spacing {
        max-width: 1200px;
        margin: 0 auto;
        }

        .notif-detail-attachment-btn:hover {
        transform: translateY(-2px);
        }

        .notif-detail-action-btn:hover {
        transform: translateY(-2px);
        }
        }


        .notif-page-container {
        background: #f8f9fa;
        min-height: 100vh;
        padding-bottom: 30px;
        }

        .notif-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px 0 80px;
        margin-bottom: -50px;
        border-radius: 0 0 24px 24px;
        position: relative;
        }

        .notif-header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        }

        .notif-header-left h5 {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0 0 4px 0;
        }

        .notif-header-left p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
        margin: 0;
        }

        .notif-clear-btn {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 10px 20px;
        border-radius: 12px;
        font-size: 0.875rem;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        }

        .notif-clear-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .notif-clear-btn:active {
        transform: translateY(0);
        }

        .notif-clear-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        }

        /* Content spacing */
        .notif-content-spacing {
        background: white;
        border-radius: 24px;
        padding: 30px 20px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        }

        .notif-list-wrapper {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        overflow: hidden;
        }

        .notif-list {
        list-style: none;
        padding: 0;
        margin: 0;
        }

        .notif-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 20px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        }

        .notif-item:last-child {
        border-bottom: none;
        }

        .notif-item:hover {
        background: #f8f9fa;
        transform: translateX(4px);
        }

        .notif-item:active {
        transform: scale(0.99);
        }

        /* Notification Icon */
        .notif-icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 1.5rem;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        }

        .notif-icon-wrapper i {
        color: #667eea;
        }

        /* Status-based icon colors */
        .notif-icon-success {
        background: linear-gradient(135deg, rgba(40, 199, 111, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%) !important;
        }

        .notif-icon-success i {
        color: #28c76f !important;
        }

        .notif-icon-warning {
        background: linear-gradient(135deg, rgba(255, 159, 67, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%) !important;
        }

        .notif-icon-warning i {
        color: #ff9f43 !important;
        }

        .notif-icon-danger {
        background: linear-gradient(135deg, rgba(234, 84, 85, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
        }

        .notif-icon-danger i {
        color: #ea5455 !important;
        }

        .notif-icon-info {
        background: linear-gradient(135deg, rgba(0, 207, 232, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%) !important;
        }

        .notif-icon-info i {
        color: #00cfe8 !important;
        }

        /* Notification Content */
        .notif-content {
        flex: 1;
        min-width: 0;
        }

        .notif-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 6px 0;
        line-height: 1.4;
        }

        .notif-message {
        font-size: 0.8rem;
        color: #666;
        margin: 0 0 8px 0;
        line-height: 1.5;
        }

        .notif-message b {
        color: #667eea;
        font-weight: 600;
        }

        .notif-note {
        background: #f8f9fa;
        border-left: 3px solid #667eea;
        padding: 8px 12px;
        border-radius: 6px;
        margin: 8px 0;
        }

        .notif-note-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: #667eea;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        }

        .notif-note-text {
        font-size: 0.75rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
        }

        .notif-time {
        font-size: 0.7rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 4px;
        }

        .notif-time i {
        font-size: 0.65rem;
        }

        /* Arrow Icon */
        .notif-arrow {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #c7c7c7;
        font-size: 1rem;
        transition: all 0.3s ease;
        }

        .notif-item:hover .notif-arrow {
        color: #667eea;
        transform: translateY(-50%) translateX(4px);
        }

        /* Empty State */
        .notif-empty-state {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }

        .notif-empty-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        }

        .notif-empty-icon i {
        font-size: 40px;
        color: #667eea;
        }

        .notif-empty-state h5 {
        color: #333;
        font-weight: 600;
        margin-bottom: 8px;
        }

        .notif-empty-state p {
        color: #666;
        font-size: 0.875rem;
        margin: 0;
        }

        /* Loading Spinner */
        .notif-loading {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        }

        /* Responsive - Mobile */
        @media (max-width: 576px) {
        .notif-page-container {
        padding-bottom: 20px;
        }

        .notif-header {
        padding: 24px 0 60px;
        margin-bottom: -40px;
        border-radius: 0 0 20px 20px;
        }

        .notif-header-content {
        gap: 12px;
        padding: 0 16px;
        }

        .notif-header-left h5 {
        font-size: 1.3rem;
        margin-bottom: 2px;
        }

        .notif-header-left p {
        font-size: 0.8rem;
        }

        .notif-clear-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 10px;
        flex-shrink: 0;
        }

        .notif-clear-btn:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.3);
        }

        .notif-content-spacing {
        background: transparent;
        border-radius: 0;
        padding: 0 12px;
        box-shadow: none;
        margin-bottom: 0;
        margin-top: 8px;
        }

        .notif-list-wrapper {
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        background: white;
        }

        .notif-item {
        padding: 16px 14px;
        gap: 12px;
        }

        .notif-item:hover {
        background: white;
        transform: none;
        }

        .notif-item:active {
        background: #f8f9fa;
        transform: scale(1);
        }

        .notif-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        border-radius: 11px;
        }

        .notif-title {
        font-size: 0.85rem;
        font-weight: 600;
        }

        .notif-message {
        font-size: 0.75rem;
        }

        .notif-arrow {
        right: 14px;
        font-size: 0.9rem;
        }

        .notif-item:active .notif-arrow {
        color: #667eea;
        }

        .notif-empty-state {
        padding: 60px 20px;
        border-radius: 16px;
        background: white;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        margin-top: 8px;
        }

        .notif-empty-icon {
        width: 70px;
        height: 70px;
        }

        .notif-empty-icon i {
        font-size: 36px;
        }

        .notif-empty-state h5 {
        font-size: 1rem;
        margin-bottom: 6px;
        }

        .notif-empty-state p {
        font-size: 0.85rem;
        }
        }

        /* Modern Tab Styling */
        .modern-tabs-wrapper {
        background: white;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        }

        .modern-tabs {
        display: flex;
        background: #f8f9fa;
        padding: 8px;
        gap: 8px;
        border: none;
        }

        .modern-tabs .nav-item {
        flex: 1;
        }

        .modern-tabs .nav-link {
        background: transparent;
        border: none;
        border-radius: 12px;
        padding: 12px 20px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #666;
        transition: all 0.3s ease;
        text-align: center;
        }

        .modern-tabs .nav-link:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        }

        .modern-tabs .nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        /* Tab Content */
        .modern-tab-content {
        background: white;
        border-radius: 0 0 20px 20px;
        padding: 20px;
        min-height: 400px;
        }

        /* Header Section */
        .riwayat-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px 0 60px;
        margin-bottom: -40px;
        border-radius: 0 0 24px 24px;
        }

        .riwayat-header h4 {
        color: white;
        font-weight: 700;
        margin: 0;
        }

        .riwayat-header p {
        color: rgba(255, 255, 255, 0.9);
        margin: 8px 0 0;
        font-size: 0.9rem;
        }

        /* Stats Cards */
        .stats-mini {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        }

        .stat-mini-card {
        flex: 1;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 12px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-mini-card .label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 4px;
        }

        .stat-mini-card .value {
        font-size: 1.25rem;
        color: white;
        font-weight: 700;
        }

    
            /* Filter Section */
            .filter-section {
                background: white;
                border-radius: 16px;
                padding: 16px;
                margin-bottom: 20px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            }

            .filter-section input:focus,
            .filter-section select:focus {
                outline: none;
                border-color: #667eea;
                background: white;
            }

            .filter-section input::placeholder {
                color: #999;
            }

            .filter-btn {
                background: #f8f9fa;
                border: 1px solid #e0e0e0;
                border-radius: 10px;
                padding: 8px 16px;
                font-size: 0.85rem;
                color: #666;
                transition: all 0.3s ease;
            }

            .filter-btn:hover,
            .filter-btn.active {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                border-color: transparent;
            }

            @media (max-width: 768px) {
                .filter-section>div:first-child {
                    grid-template-columns: 1fr !important;
                }
            }


            /* Timeline Item */
            .timeline-item {
                background: white;
                border-radius: 16px;
                padding: 16px;
                margin-bottom: 12px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
                border-left: 4px solid #667eea;
                transition: all 0.3s ease;
            }

            .timeline-item:hover {
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                transform: translateY(-2px);
            }

            .timeline-header {
                display: flex;
                justify-content: space-between;
                align-items: start;
                margin-bottom: 12px;
            }

            .timeline-title {
                font-weight: 600;
                color: #333;
                font-size: 0.95rem;
                margin: 0;
            }

            .timeline-date {
                font-size: 0.75rem;
                color: #999;
            }

            .timeline-info {
                display: flex;
                gap: 16px;
                margin-bottom: 12px;
                flex-wrap: wrap;
            }

            .timeline-info-item {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 0.8rem;
                color: #666;
            }

            .timeline-info-item i {
                color: #667eea;
                font-size: 0.85rem;
            }

            /* Status Badge */
            .status-badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 600;
            }

            .status-badge.proses {
                background: rgba(33, 147, 176, 0.1);
                color: #2193b0;
            }

            .status-badge.selesai {
                background: rgba(17, 153, 142, 0.1);
                color: #11998e;
            }

            .status-badge.ditolak {
                background: rgba(235, 51, 73, 0.1);
                color: #eb3349;
            }

            .status-badge.menunggu {
                background: rgba(255, 159, 64, 0.1);
                color: #ff9f40;
            }

            .status-badge.baru {
                background: rgba(33, 147, 176, 0.1);
                color: #2f72e6ff;
            }


            /* Action Buttons */
            .action-buttons {
                display: flex;
                gap: 8px;
                margin-top: 12px;
            }

            .btn-action {
                flex: 1;
                padding: 8px 16px;
                border-radius: 10px;
                font-size: 0.8rem;
                font-weight: 600;
                border: none;
                transition: all 0.3s ease;
            }

            .btn-detail {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
            }

            .btn-detail:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }

            .btn-track {
                background: #f8f9fa;
                color: #667eea;
                border: 1px solid #e0e0e0;
            }

            .btn-track:hover {
                background: rgba(102, 126, 234, 0.1);
            }

            /* Empty State */
            .empty-state {
                text-align: center;
                padding: 60px 20px;
            }

            .empty-state-icon {
                width: 120px;
                height: 120px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
            }

            .empty-state-icon i {
                font-size: 48px;
                color: white;
            }

            .empty-state h5 {
                color: #333;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .empty-state p {
                color: #999;
                font-size: 0.9rem;
            }

            /* Loading Skeleton */
            .skeleton {
                background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
                background-size: 200% 100%;
                animation: loading 1.5s infinite;
                border-radius: 8px;
            }

            @keyframes loading {
                0% {
                    background-position: 200% 0;
                }

                100% {
                    background-position: -200% 0;
                }
            }

            /* Responsive */
            @media (max-width: 576px) {
                .timeline-info {
                    flex-direction: column;
                    gap: 8px;
                }

                .action-buttons {
                    flex-direction: column;
                }

                .stats-mini {
                    flex-wrap: wrap;
                }

                .stat-mini-card {
                    min-width: calc(50% - 5px);
                }
            }
