/* Professional Light Theme - Profiles Portal */

:root {
    /* Light Theme Colors */
    --primary-color: #764ba2;
    --primary-light: #9a82c7;
    --primary-dark: #5a3678;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;

    /* Bootstrap Color Overrides */
    --bs-primary: #764ba2;
    --bs-primary-rgb: 118, 75, 162;
    --bs-body-font-size: 0.9rem;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #10b981;
    --green-600: #059669;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --yellow-500: #f59e0b;
    --yellow-600: #d97706;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc3545;

    /* Background */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Success Button Overrides */
    .btn-outline-success {
        --bs-btn-color: #4ba39c !important;
        --bs-btn-border-color: #4ba39c;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #4ba39c;
        --bs-btn-hover-border-color: #4ba39c;
        --bs-btn-focus-shadow-rgb: 25, 135, 84;
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #4ba39c;
        --bs-btn-active-border-color: #4ba39c;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #4ba39c;
        --bs-btn-disabled-bg: transparent;
        --bs-btn-disabled-border-color: #4ba39c;
        --bs-gradient: none;
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Global Link Styling - Purple instead of Blue */
a {
    color: var(--primary-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Subtle Tech Pattern Background */
.tech-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.01;
    background-image: linear-gradient(
            45deg,
            var(--primary-color) 25%,
            transparent 25%
        ),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
        linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(60px) translateY(60px);
    }
}

/* Floating Elements - Simple and Light */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand,
.navbar-brand span {
    font-weight: 500 !important;
    font-size: 1.5rem;
    color: var(--gray-600) !important;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;

    background: linear-gradient(135deg, #868686 20%, #8d64b6 60%, #4088b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    margin-right: 3px;
}

.navbar-brand i {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    padding: var(--space-2) var(--space-4) !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--gray-50);
}

/* Buttons */
.btn {
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-gradient {
    background: var(--bg-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--gray-50);
    color: var(--gray-700);
}

/* Bootstrap Primary Color Overrides for More Faded Appearance */
.btn-primary {
    background: rgba(118, 75, 162, 0.7) !important;
    border-color: rgba(118, 75, 162, 0.7) !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: rgba(118, 75, 162, 0.8) !important;
    border-color: rgba(118, 75, 162, 0.8) !important;
    color: white !important;
}

.btn-outline-primary {
    background: transparent !important;
    border-color: rgba(118, 75, 162, 0.6) !important;
    color: rgba(118, 75, 162, 0.7) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: rgba(118, 75, 162, 0.7) !important;
    border-color: rgba(118, 75, 162, 0.7) !important;
    color: white !important;
}

.text-primary {
    color: rgba(118, 75, 162, 0.7) !important;
}

.link-primary {
    color: rgba(118, 75, 162, 0.7) !important;
}

.link-primary:hover {
    color: rgba(118, 75, 162, 0.8) !important;
}

/* Bootstrap Success (Green) Color Overrides for Light Blue */
.btn-success {
    background: rgba(59, 130, 246, 0.7) !important;
    border-color: rgba(59, 130, 246, 0.7) !important;
    color: white !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: rgba(59, 130, 246, 0.8) !important;
    border-color: rgba(59, 130, 246, 0.8) !important;
    color: white !important;
}

.text-success {
    color: rgba(59, 130, 246, 0.7) !important;
}

.bg-success {
    background-color: rgba(59, 130, 246, 0.7) !important;
}

/* Badge Styling */
.badge {
    --bs-badge-font-weight: 100;
}

/* Gradient Button */
.btn-gradient {
    background: var(--bg-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    opacity: 0.9;
}

/* Experience Badge System */
.badge-exp-junior {
    background: #8fbea0 100% !important;
    color: #fff !important;
}

.badge-exp-mid {
    background: #80daa1 100% !important;
    color: #fff !important;
}

.badge-exp-senior {
    background: #64b180 100% !important;
    color: #fff !important;
}

.badge-exp-expert {
    background: #4ca56d 100% !important;
    color: #fff !important;
}

/* Layout Text Button */
#layouttext {
    font-weight: 300 !important;
}

/* Elegant View Toggle */
.view-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.view-toggle-checkbox {
    display: none;
}

.view-toggle-label {
    position: relative;
    display: flex;
    align-items: center;
    width: 110px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 0 15px 0 4px;
}

.view-toggle-label:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.view-toggle-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.view-toggle-switch {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-toggle-switch i {
    position: absolute;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

#gridIcon {
    opacity: 1;
    transform: scale(1);
}

#listIcon {
    opacity: 0;
    transform: scale(0.8);
}

.view-toggle-checkbox:checked + .view-toggle-label {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    border-color: var(--primary-color);
}

.view-toggle-checkbox:checked + .view-toggle-label .view-toggle-inner {
    transform: translateX(68px);
    background: white;
}

.view-toggle-checkbox:checked + .view-toggle-label #gridIcon {
    opacity: 0;
    transform: scale(0.8);
}

.view-toggle-checkbox:checked + .view-toggle-label #listIcon {
    opacity: 1;
    transform: scale(1);
    color: var(--primary-color);
}

.view-toggle-text {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-left: 45px;
    transition: all 0.3s ease;
    z-index: 1;
}

.view-toggle-checkbox:checked + .view-toggle-label .view-toggle-text {
    color: white;
    margin-left: 10px;
}

.text-purple {
    color: #764ba2 !important;
}

.text-purple:hover {
    color: #5a3678 !important;
}

/* Form Controls - Remove Shadow and Purple Borders on Focus Only */
.form-control,
.form-select {
    box-shadow: none !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    color: var(--gray-600) !important;
    line-height: 1.4 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #764ba2 !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--gray-700) !important;
}

.form-control:active,
.form-select:active {
    border-color: #764ba2 !important;
}

.form-control::placeholder {
    color: var(--gray-400) !important;
    font-weight: 300 !important;
}

/* Form Label Icons with Gradient Background */
.form-label i {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Mandatory Field Stars */
.form-label .text-danger,
label .text-danger,
.required-asterisk,
.text-danger {
    color: lightcoral !important;
}

/* Simple approach to style asterisks in labels */
.form-label,
label {
    position: relative;
}

/* Style for manually added asterisks */
.asterisk {
    color: lightcoral;
    font-weight: bold;
}

/* Back Navigation Button */
.btn-back {
    color: var(--gray-600) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-back:hover {
    color: var(--gray-800) !important;
    background-color: var(--gray-100);
    padding: 8px 12px;
    border-radius: 6px;
    transform: translateX(-2px);
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding-top: 6rem !important; /* Account for fixed navbar + more space */
    padding-bottom: var(--space-20);
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 400; /* Much lighter font weight */
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.hero .highlight {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: var(--space-20) 0;
    background: white;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: white;
    font-size: 2rem;
}

.feature-card h5 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: var(--space-4);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: var(--gray-50);
    padding: var(--space-16) 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: var(--space-2);
}

/* CTA Section */
.cta {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    padding: var(--space-20) 0;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #3e2f54 100%);
    color: var(--gray-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-icon {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-light);
}

/* Utility Classes */
.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--space-20) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .feature-card {
        margin-bottom: var(--space-6);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Animation for page load */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}
.fade-in-delay-2 {
    animation-delay: 0.4s;
}
.fade-in-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detailed Profile Styling */
.profile-main-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--gray-800);
}

.profile-section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: none;
}

.profile-section-card {
    border: none;
    box-shadow: var(--shadow-md);
}

.profile-user-avatar {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-xl);
    background: white;
    box-shadow: var(--shadow-lg);
}

.profile-card-body {
    background: var(--bg-primary);
}

.profile-project-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: none;
}

.profile-cert-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.profile-progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: var(--gray-200);
}

.profile-progress-fill {
    background: var(--bg-gradient);
    border-radius: 4px;
}

.profile-experience-border {
    border-color: var(--primary-color) !important;
    border-width: 3px !important;
}

.profile-education-divider {
    border-bottom: 1px solid var(--gray-200);
}

.profile-text-primary {
    color: var(--gray-700);
    line-height: 1.7;
}

.profile-text-secondary {
    color: var(--gray-600);
}

.profile-text-muted {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.profile-text-bold {
    color: var(--gray-800);
    font-size: 0.9rem;
}

/* Elegant Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.notification-content {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(118, 75, 162, 0.15);
    border-left: 4px solid var(--green-500);
    position: relative;
    backdrop-filter: blur(10px);
}

.notification-content.success {
    border-left-color: var(--green-500);
}

.notification-content.info {
    border-left-color: var(--blue-500);
}

.notification-content.warning {
    border-left-color: var(--yellow-500);
}

.notification-content.error {
    border-left-color: var(--red-500);
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.notification-icon.success {
    background: linear-gradient(
        135deg,
        var(--green-500) 0%,
        var(--green-600) 100%
    ) !important;
}

.notification-icon.info {
    background: linear-gradient(
        135deg,
        var(--blue-500) 0%,
        var(--blue-600) 100%
    );
}

.notification-icon.warning {
    background: linear-gradient(
        135deg,
        var(--yellow-500) 0%,
        var(--yellow-600) 100%
    );
}

.notification-icon.error {
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
}

.notification-text {
    flex: 1;
}

.notification-text h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.notification-text p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}
