@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Palette - Deep Indigo & Slate */
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary: #0f172a;
    --accent: #f43f5e;
    --success: #10b981;
    --danger: #f43f5e;
    --warning: #f59e0b;

    /* Mesh Gradient Accents */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-700: #334155;
    --gray-900: #0f172a;

    /* Typography */
    --font-family: 'Outfit', -apple-system, sans-serif;

    /* Effects */
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --gradient-premium: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --radius-premium: 20px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: hsl(210, 50%, 99%);
    /* Fresh premium background */
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.03) 0px, transparent 50%);
    color: var(--gray-700);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /* Fix horizontal scroll */
}

/* Header - Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    box-shadow: var(--glass-shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.03em;
    text-decoration: none;
}

.logo span {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.nav a:hover,
.nav a.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--gray-100);
    padding: 4rem 0;
    margin-top: auto;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-200);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Buttons - Premium Feel */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-premium);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary-light);
    color: var(--primary);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-body {
    padding: 1.5rem;
}

/* Hero Section - Clean & Professional (Small SEO Tools Style) */
.hero {
    background: #ffffff;
    padding: 1rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    text-align: center;
}

.hero h1 {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 2.25rem;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--gray-500);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Plagiarism Checker Container Gap Fix */
.home-tool-container {
    max-width: 850px;
    margin: 2rem auto;
    /* Clean gap */
    padding: 0 1rem;
}

/* Home Plagiarism Checker - Glassmorphism Interface */
.home-tool-container {
    max-width: 800px;
    margin: -3rem auto 3rem;
    /* Reduced overlap (-5rem to -3rem) and bottom margin */
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.home-tool-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    /* Softer shadow */
    padding: 1.5rem;
    /* Reduced padding */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-tool-card textarea {
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-50);
}

.home-tool-card textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Tools Grid - Elegant & Compact */
.section-title {
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.03em;
    padding-left: 1rem;
    border-left: 6px solid var(--primary);
    display: flex;
    align-items: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--white);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-light);
    text-decoration: none;
}

/* Plagiarism Result Table - Friendly */
#resultList {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

#resultList td {
    vertical-align: middle;
    padding: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

#resultList tr:last-child td {
    border-bottom: none;
}

/* Plagiarism Phrase Column */
.phrase-text {
    text-align: left;
    font-size: 0.95rem;
    color: #495057;
    word-break: break-word;
    /* Ensure long words dont overflow */
    max-width: 500px;
}

.tool-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gray-50);
    transition: var(--transition);
}

.tool-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tool-card:hover .tool-card-icon {
    background: rgba(79, 70, 229, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.tool-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tool-card-desc {
    font-size: 0.85rem;
    color: var(--gray-700);
    opacity: 0.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tool-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.tool-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Results Table */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table th,
.table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.badge-primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

/* Progress */
.progress {
    height: 8px;
    background: var(--gray-200);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid var(--warning);
}

.alert-info {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-card-image {
    height: 180px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.blog-card-title a {
    color: var(--gray-900);
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-500);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.py-4 {
    padding: 2rem 0;
}

.hidden {
    display: none !important;
}

/* Search Box */
.search-box {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Premium Results Layout */
.row-premium {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.score-card {
    background: #f1f5f9;
    /* Darker gray for better contrast */
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    /* Stronger border */
}

.score-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-top: 0.5rem;
}

.phrase-text {
    text-align: left;
    font-size: 0.95rem;
    color: var(--secondary);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th {
    background: var(--gray-50);
    padding: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.premium-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

/* Related Tools Icons */
.related-tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.related-tool-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.related-tool-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-premium);
}

.related-tool-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.related-tool-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .row-premium {
        flex-direction: column;
    }

    .score-card {
        margin-bottom: 1rem;
    }
}

/* ===========================================
   PREMIUM HOMEPAGE STYLES - Small SEO Tools Style
   =========================================== */

/* Hero Premium */
.hero-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 3rem 0;
}

.premium-tool-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.premium-textarea {
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
}

.premium-textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
    outline: none !important;
}

/* Results Area - Friendly */
.results-area {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-100);
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 1rem;
}

.badge-unique {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-plagiarized {
    background: #f43f5e;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.score-display {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-top: 1rem;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Quick Stats Section */
.quick-stats {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat-item h4 {
    font-weight: 800;
}

/* Tool Cards - New Style (Compact) */
.tool-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 100px;
}

.tool-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
    text-decoration: none;
}

.tool-card-icon-new {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.tool-card-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

/* Category Title */
.category-title {
    font-weight: 700;
    color: var(--secondary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Tools Grid - More Compact */
/* Search Bar - Premium */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 10;
}

.search-input {
    height: 60px !important;
    padding-left: 55px !important;
    border-radius: 999px !important;
    border: 2px solid var(--gray-200) !important;
    background: var(--white) !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.search-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.1) !important;
    transform: translateY(-2px);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.premium-table-wrapper {
    overflow: auto;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .tool-card-new {
        padding: 0.75rem 0.5rem;
        min-height: 80px;
    }

    .tool-card-icon-new {
        width: 30px;
        height: 30px;
    }

    .tool-card-name {
        font-size: 0.75rem;
    }

    .premium-tool-card {
        padding: 1.5rem;
    }
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        background: var(--gray-50);
        border: 1px solid var(--gray-100);
    }

    .nav a:hover,
    .nav a.active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    /* Container Adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Hero Adjustments */
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Footer Adjustments */
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.font-weight-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--primary);
}

.text-break {
    word-break: break-word;
}

.small {
    font-size: 0.875rem;
}

.border {
    border: 1px solid var(--gray-200);
}

.rounded-lg {
    border-radius: 12px;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300, #cbd5e1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}