        :root {
            --primary: #6c63ff;
            --secondary: #ff6584;
            --accent: #42e2b8;
            --dark: #2a2d3e;
            --light: #f9f9f9;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lexend', 'Noto Sans Gujarati', sans-serif;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
            color: var(--dark);
            line-height: 1.6;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(108, 99, 255, 0.2);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .logo-circle {
            padding: 10px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #5a54d8);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }

        .logo-circle span {
            font-size: 20px;
            color: white;
        }

        .nav-title {
            display: flex;
            flex-direction: column;
        }

        .nav-title-main {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .nav-title-sub {
            font-size: 10px;
            color: var(--dark);
            opacity: 0.7;
            line-height: 1.2;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pill-tag {
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 10px;
            border: 1px solid rgba(108, 99, 255, 0.3);
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
        }

        .pill-tag-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #5a54d8);
            color: white;
            padding: 8px 12px;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            box-shadow: var(--shadow);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3);
        }

        .nav-toggle {
            display: none;
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 16px;
        }

        .container h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 700;
        }

        /* Search Box */
        .search-box {
            margin-bottom: 20px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid rgba(108, 99, 255, 0.2);
            border-radius: var(--radius-lg);
            font-size: 16px;
            background: white;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
        }

        /* Card View */
        /* .card-view {
            display: none;
            margin-bottom: 20px;
        }

        .customer-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
            margin-bottom: 16px;
        }

        .customer-card h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 18px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 8px;
        }

        .customer-detail {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding: 6px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
        }

        .customer-detail:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--dark);
            opacity: 0.8;
            font-size: 14px;
        }

        .detail-value {
            color: var(--dark);
            font-size: 14px;
            text-align: right;
            max-width: 60%;
        } */

        /* Table Box */
        .table-box {
            overflow-x: auto;
            margin-bottom: 20px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            background: white;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th {
            background: linear-gradient(135deg, var(--primary), #5a54d8);
            color: white;
            padding: 12px 10px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
        }

        td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 16px;
        }

        tr:nth-child(even) {
            background: rgba(108, 99, 255, 0.03);
        }

        tr:hover {
            background: rgba(108, 99, 255, 0.08);
        }

        /* Pagination Styles */
        .pagination {
            display: none;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            gap: 8px;
            flex-wrap: wrap;
        }

        .pagination-info {
            font-size: 14px;
            color: var(--dark);
            margin-right: 15px;
            font-weight: 600;
        }

        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            min-width: 40px;
        }

        .pagination a {
            background: white;
            color: var(--primary);
            border: 1px solid rgba(108, 99, 255, 0.3);
            box-shadow: var(--shadow);
        }

        .pagination a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .pagination .current {
            background: var(--primary);
            color: white;
            border: 1px solid var(--primary);
        }

        .pagination .disabled {
            background: #f0f0f0;
            color: #999;
            cursor: not-allowed;
            border: 1px solid #ddd;
        }

        /* Info Section */
        #info {
            padding: 30px 16px;
            background: white;
            margin-top: 20px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-layout {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }

        .info-card h3 {
            color: var(--secondary);
            margin-bottom: 16px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            margin-bottom: 12px;
            padding-left: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 16px;
            line-height: 1.5;
        }

        .info-list li i {
            color: var(--secondary);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .date-card {
            background: linear-gradient(135deg, #fff, #f8f7ff);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
        }

        .date-row {
            gap: 12px;
            margin-bottom: 16px;
        }

        .date-row:last-child {
            margin-bottom: 0;
        }

        .date-icon {
            font-size: 18px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .date-row div {
            flex: 1;
        }

        .date-row strong {
            color: var(--dark);
            font-size: 20px;
            display: block;
            margin-bottom: 4px;
        }

        .date-highlight {
            margin-top: 8px;
            padding: 8px 12px;
            background: rgba(66, 226, 184, 0.1);
            border-radius: var(--radius-sm);
            font-size: 16px;
            border-left: 3px solid var(--accent);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 20px 16px;
            background: var(--dark);
            color: white;
            margin-top: 30px;
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .nav-title-main {
                font-size: 16px;
            }

            .nav-title-sub {
                font-size: 12px;
            }

            .pill-tag {
                font-size: 12px;
                padding: 6px 12px;
            }

            .btn-primary {
                font-size: 14px;
                padding: 10px 16px;
            }

            .container h2 {
                font-size: 24px;
            }

            .info-layout {
                flex-direction: row;
            }

            .info-card,
            .date-card {
                flex: 1;
            }
        }

        @media (max-width: 480px) {
            .nav-title {
                display: none;
            }

            .customer-detail {
                flex-direction: column;
                gap: 4px;
            }

            .detail-value {
                max-width: 100%;
                text-align: left;
            }

            th,
            td {
                padding: 10px 8px;
                font-size: 14px;
            }

            .pagination {
                gap: 4px;
            }

            .pagination a,
            .pagination span {
                padding: 6px 8px;
                font-size: 12px;
                min-width: 35px;
            }

            .pagination-info {
                font-size: 12px;
                margin-right: 10px;
            }
        }

        /* Animation for reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.2s;
        }





        /* Mobile-First Card Results Styling */
.card-view {
    display: none;
    margin-bottom: 20px;
}

.customer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.customer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(108, 99, 255, 0.1);
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--shadow);
}

.customer-title {
    flex: 1;
}

.customer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.customer-kupan {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(108, 99, 255, 0.1);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.customer-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(108, 99, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(108, 99, 255, 0.1);
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(108, 99, 255, 0.08);
    transform: translateY(-2px);
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-label i {
    font-size: 14px;
    width: 16px;
}

.detail-value {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

/* Contact items with special styling */
.detail-item.contact {
    background: rgba(66, 226, 184, 0.05);
    border-color: rgba(66, 226, 184, 0.2);
}

.detail-item.contact .detail-label {
    color: var(--accent);
}

.detail-item.agent {
    background: rgba(255, 101, 132, 0.05);
    border-color: rgba(255, 101, 132, 0.2);
}

.detail-item.agent .detail-label {
    color: var(--secondary);
}

/* Date item styling */
.detail-item.date {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.detail-item.date .detail-label {
    color: #ffc107;
}

/* No results styling */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.no-results-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.no-results h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.no-results p {
    color: #666;
    font-size: 14px;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .customer-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-item.full-width {
        grid-column: 1 / -1;
    }
    
    .customer-card-header {
        margin-bottom: 20px;
    }
    
    .customer-name {
        font-size: 20px;
    }
    
    .customer-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .customer-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Enhancements */
@media (max-width: 480px) {
    .customer-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .customer-card-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .customer-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .customer-name {
        font-size: 16px;
    }
    
    .detail-item {
        padding: 10px;
    }
    
    .detail-label {
        font-size: 11px;
    }
    
    .detail-value {
        font-size: 13px;
    }
}

/* Animation for card appearance */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-card {
    animation: cardSlideIn 0.5s ease-out;
}

/* Print Styles */
@media print {
    .customer-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .customer-card::before {
        display: none;
    }
}