* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background: #1f2937;
    color: #f9fafb;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    border-right: 1px solid #374151;
    transition: transform 0.3s ease, width 0.3s ease;
    z-index: 1000;
}

body.collapsed-sidebar .sidebar {
    transform: translateX(-100%);
}

.sidebar h2 {
    color: #f9fafb;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #f9fafb;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.sidebar a:hover,
.sidebar a.active {
    background: #0d9488;
    color: #fff;
}

.sidebar a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-toggle-btn {
    display: block !important;
}

/* Sidebar mobile */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }
}

/* Main */
.main {
    margin-left: 240px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f9fafb;
    transition: margin-left 0.3s ease;
}

body.collapsed-sidebar .main {
    margin-left: 0;
}

/* Header */
header {
    background: #fff;
    color: #1f2937;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: margin-left 0.3s ease, width 0.3s ease;
    margin-left: 240px;
}

body.collapsed-sidebar header {
    margin-left: 0;
}

@media (max-width: 768px) {
    header {
        margin-left: 0 !important;
    }
}

header .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d9488;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .logo i {
    font-size: 1.4rem;
}

header .menu-btn {
    display: block;
    font-size: 1.6rem;
    cursor: pointer;
    color: #1f2937;
    transition: color 0.2s;
}

header .menu-btn:hover {
    color: #0d9488;
}

header .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header .feedback-btn {
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

header .feedback-btn:hover {
    background: #0f766e;
}

header .profile {
    position: relative;
    cursor: pointer;
}

header .profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0d9488;
}

header .profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-width: 160px;
    z-index: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .profile-dropdown a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #1f2937;
    transition: background 0.2s ease;
}

header .profile-dropdown a:hover {
    background: #f3f4f6;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.stat-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, opacity 0.5s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-box h2 {
    color: #1f2937;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-box p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Distinct styles for stat boxes */
.stat-box.balance {
    border-left: 4px solid #0d9488;
}

.stat-box.transactions {
    border-left: 4px solid #2dd4bf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stat-box.withdraw {
    border-left: 4px solid #4b5563;
}

.stat-box.pending {
    border-left: 4px solid #6b7280;
    border-radius: 10px;
}

/* Payment Boxes */
.payment-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns on desktop */
    gap: 1rem;
    padding: 0 2rem 2rem 2rem;
}

.payment-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px; /* Standard radius from mockup */
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.payment-box:nth-child(1) {
    animation-delay: 0.1s;
}

.payment-box:nth-child(2) {
    animation-delay: 0.2s;
}

.payment-box:nth-child(3) {
    animation-delay: 0.3s;
}

.payment-box:nth-child(4) {
    animation-delay: 0.4s;
}

.payment-box:hover {
    transform: translateY(-5px);
}

.payment-box .header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.payment-box .logo { 
    width: 32px; 
    height: 32px; 
    object-fit: contain; 
}

.payment-box h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

.payment-box .details p {
    font-size: 0.85rem;
    margin: 0.3rem 0;
    color: #4b5563;
}

.payment-box .verified-badge {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
    margin-top: -2px;
}

.payment-box .qr {
    background: #f1f5f9; /* Light slate background from mockup */
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-box .logo-fallback {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.payment-box .qr img { 
    width: 100%; 
    max-width: 110px; /* Smaller QR as requested */
    height: auto; 
}

.payment-box button {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: auto;
}

.payment-box button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

/* Card Status Labels */
.card-label {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-bottom-left-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.official-label {
    background: #0d9488;
    color: #fff;
}

.merchant-label {
    background: #475569;
    color: #fff;
}

.official-card {
    border-top: 4px solid #0d9488 !important;
}

.merchant-card {
    border-top: 4px solid #475569 !important;
}

/* Withdraw Layout */
.withdraw-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    padding: 2rem;
}

.withdraw-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.withdraw-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.withdraw-card.full-width {
    grid-column: span 2;
}

.withdraw-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.withdraw-card .info h4 {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.withdraw-card .info p {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

/* Colorful classes */
.bg-balance { background: #f0fdfa; color: #0d9488; }
.bg-deposit { background: #eff6ff; color: #2563eb; }
.bg-earnings { background: #f0fdf4; color: #16a34a; }
.bg-bonus { background: #fff7ed; color: #ea580c; }
.bg-withdraw { background: #fef2f2; color: #dc2626; }

@media (max-width: 1024px) {
    .withdraw-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .withdraw-stats {
        grid-template-columns: 1fr;
    }
    .withdraw-card.full-width {
        grid-column: span 1;
    }
}

/* Notification System */
.payment-box.cashapp { border-left: 4px solid #0d9488; }
.payment-box.cashapp button { background: #0d9488; }
.payment-box.cashapp button:hover {
    background: #0f766e;
}

.payment-box.paypal { border-left: 4px solid #2dd4bf; }
.payment-box.paypal button { background: #2dd4bf; }
.payment-box.paypal button:hover {
    background: #26a69a;
}

.payment-box.chime { border-left: 4px solid #475569; }
.payment-box.chime button { background: #475569; }
.payment-box.chime button:hover {
    background: #374151;
}

.payment-box.applepay { border-left: 4px solid #64748b; }
.payment-box.applepay button { background: #64748b; }
.payment-box.applepay button:hover {
    background: #4b5563;
}

/* Notification System */
.notification-panel {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.notification-panel.active {
    display: block;
}

.notification-header {
    padding: 1rem;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

.notification-header .clear-btn {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 0.9rem;
}

.notification-item {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #4b5563;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item .timestamp {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0d9488;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.chat-btn:hover {
    background: #0f766e;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #1f2937;
    color: #f9fafb;
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid #374151;
}

footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

footer .footer-section {
    flex: 1;
    min-width: 180px;
    margin-bottom: 1rem;
}

footer h4 {
    color: #f9fafb;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

footer a {
    display: block;
    color: #d1d5db;
    margin: 0.4rem 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #0d9488;
}

footer .newsletter input {
    padding: 0.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-right: 0.5rem;
    width: 200px;
    background: #fff;
}

footer .newsletter button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    background: #0d9488;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

footer .newsletter button:hover {
    background: #0f766e;
}

footer p {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Modal (Request, Feedback, Chat) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
}

.modal-content {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(90deg, #1f2937 0%, #0d9488 100%);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #0d9488;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header .logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9fafb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header .logo i {
    font-size: 1rem;
}

.modal-header h2 {
    margin: 0;
    color: #f9fafb;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 0.4rem;
    flex-grow: 1;
    text-align: center;
}

.modal-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f9fafb;
    border-radius: 2px;
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-step {
    display: none;
}

.modal-body .form-step.active {
    display: block;
}

.modal-body .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.modal-body .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-body .form-group.full-width {
    grid-column: span 2;
}

.modal-body label {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 6px rgba(13, 148, 136, 0.2);
}

.modal-body .valid-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #059669;
    font-size: 1rem;
    display: none;
}

.modal-body .error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    display: none;
}

.modal-body .progress-bar {
    width: 100%;
    height: 4px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-top: 1.2rem;
    display: none;
    grid-column: span 2;
}

.modal-body .progress-bar.active {
    display: block;
    background: #0d9488;
    animation: progress 1.5s ease-in-out;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.modal-body .confirmation-step {
    opacity: 0;
    animation: fadeInStep 0.3s ease forwards;
}

@keyframes fadeInStep {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal-body .confirmation-step p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0.6rem 0;
}

.modal-body button {
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 0.8rem;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-weight: 500;
    grid-column: span 2;
    margin-top: 1.2rem;
}

.modal-body .back-btn {
    background: #6b7280;
}

.modal-body button:hover {
    background: #0f766e;
}

.modal-body .back-btn:hover {
    background: #4b5563;
}

.modal-body button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    cursor: pointer;
    color: #f9fafb;
    transition: color 0.2s ease;
}

.close:hover {
    color: #fff;
}

/* Admin Form Global Styles */
.admin-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.admin-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group-cl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-cl.full {
    grid-column: span 2;
}

.form-group-cl label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-group-cl input,
.form-group-cl select,
.form-group-cl textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group-cl input:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.admin-btn {
    background: #0d9488;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-btn:hover {
    background: #0f766e;
}

@media (max-width: 640px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .form-group-cl.full {
        grid-column: span 1;
    }
}

.chat-history {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.chat-message.user {
    align-items: flex-end;
}

.chat-message.support {
    align-items: flex-start;
}

.chat-message .message-content {
    max-width: 70%;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.chat-message.user .message-content {
    background: #0d9488;
    color: #fff;
}

.chat-message.support .message-content {
    background: #fff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

.chat-message .timestamp {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex-grow: 1;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
}

.chat-input button {
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chat-input button:hover {
    background: #0f766e;
}

.chat-input button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

/* Premium Payment Card Styling */
.payment-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.payment-box .qr {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.payment-box .qr img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .stats, .payment-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main { margin-left: 0; }
    header { padding: 1rem; }
    header .menu-btn { display: block; }
    .stats { padding: 1rem; gap: 1rem; }
    .stats, .payment-section {
        grid-template-columns: 1fr;
        padding: 0 1rem 2rem 1rem;
        gap: 1rem;
    }
    .stat-box { padding: 1.2rem; }
    .sidebar { width: 280px; }
    .modal-content { width: 95%; max-height: 90vh; overflow-y: auto; }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    /* Hide text if screen too small */
    header .header-right {
        gap: 0.8rem;
    }

    .stat-box h2 {
        font-size: 1.4rem;
    }

    .payment-box {
        padding: 1.5rem;
    }

    .payment-box h3 {
        font-size: 1.1rem;
    }

    .payment-box .qr img {
        max-width: 120px;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 1.2rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}