/**
 * MatematikvaktiNet Components CSS
 * Component styles for the theme
 */

/* ==========================================================================
   Buttons
   ========================================================================== */

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.mv-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.mv-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mv-btn-secondary {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.mv-btn-secondary:hover:not(:disabled) {
    background: var(--neutral-200);
}

.mv-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-500);
    color: var(--primary-600);
}

.mv-btn-outline:hover:not(:disabled) {
    background: var(--primary-50);
}

.mv-btn-ghost {
    background: transparent;
    color: var(--neutral-600);
}

.mv-btn-ghost:hover:not(:disabled) {
    background: var(--neutral-100);
}

.mv-btn-danger {
    background: var(--error-500);
    color: var(--white);
}

.mv-btn-danger:hover:not(:disabled) {
    background: var(--error-600);
}

.mv-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.mv-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.mv-btn-icon {
    padding: 0.75rem;
}

.mv-btn-block {
    width: 100%;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.mv-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.mv-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mv-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mv-card:hover .mv-card-image img {
    transform: scale(1.05);
}

.mv-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-500);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.mv-card-body {
    padding: 1.25rem;
}

.mv-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mv-card-title a {
    color: inherit;
    text-decoration: none;
}

.mv-card-title a:hover {
    color: var(--primary-600);
}

.mv-card-excerpt {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mv-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.mv-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mv-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.mv-form-group {
    margin-bottom: 1.25rem;
}

.mv-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.mv-form-label.required::after {
    content: ' *';
    color: var(--error-500);
}

.mv-form-input,
.mv-form-textarea,
.mv-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--neutral-900);
    background: var(--white);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.mv-form-input:focus,
.mv-form-textarea:focus,
.mv-form-select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px var(--primary-100);
}

.mv-form-input::placeholder,
.mv-form-textarea::placeholder {
    color: var(--neutral-400);
}

.mv-form-input.error,
.mv-form-textarea.error,
.mv-form-select.error {
    border-color: var(--error-500);
}

.mv-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.mv-form-hint {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-top: 0.375rem;
}

.mv-form-error {
    font-size: 0.8125rem;
    color: var(--error-500);
    margin-top: 0.375rem;
}

.mv-form-checkbox,
.mv-form-radio {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
}

.mv-form-checkbox input,
.mv-form-radio input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    accent-color: var(--primary-500);
}

/* ==========================================================================
   Avatar
   ========================================================================== */

.mv-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--primary-100);
    color: var(--primary-600);
    font-weight: 600;
}

.mv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-avatar-xs { width: 24px; height: 24px; font-size: 0.625rem; }
.mv-avatar-sm { width: 32px; height: 32px; font-size: 0.75rem; }
.mv-avatar-md { width: 40px; height: 40px; font-size: 0.875rem; }
.mv-avatar-lg { width: 56px; height: 56px; font-size: 1.125rem; }
.mv-avatar-xl { width: 80px; height: 80px; font-size: 1.5rem; }
.mv-avatar-2xl { width: 120px; height: 120px; font-size: 2rem; }

/* ==========================================================================
   Badge
   ========================================================================== */

.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.mv-badge-primary {
    background: var(--primary-100);
    color: var(--primary-700);
}

.mv-badge-success {
    background: var(--success-100);
    color: var(--success-700);
}

.mv-badge-warning {
    background: var(--warning-100);
    color: var(--warning-700);
}

.mv-badge-error {
    background: var(--error-100);
    color: var(--error-700);
}

.mv-badge-neutral {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

/* ==========================================================================
   Alert
   ========================================================================== */

.mv-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
}

.mv-alert-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
}

.mv-alert-content {
    flex: 1;
}

.mv-alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mv-alert-info {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    color: var(--primary-800);
}

.mv-alert-success {
    background: var(--success-50);
    border: 1px solid var(--success-200);
    color: var(--success-800);
}

.mv-alert-warning {
    background: var(--warning-50);
    border: 1px solid var(--warning-200);
    color: var(--warning-800);
}

.mv-alert-error {
    background: var(--error-50);
    border: 1px solid var(--error-200);
    color: var(--error-800);
}

/* ==========================================================================
   Modal
   ========================================================================== */

.mv-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mv-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mv-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform var(--transition-base);
}

.mv-modal-overlay.active .mv-modal {
    transform: scale(1) translateY(0);
}

.mv-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--neutral-100);
}

.mv-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.mv-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mv-modal-close:hover {
    background: var(--neutral-200);
}

.mv-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.mv-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--neutral-100);
}

/* ==========================================================================
   Social Actions
   ========================================================================== */

.mv-social-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--neutral-100);
    margin-top: 2rem;
}

.mv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mv-action-btn:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
}

.mv-action-btn.active {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-600);
}

.mv-action-btn .mv-icon {
    display: flex;
}

.mv-action-btn .mv-count {
    font-weight: 600;
}

.mv-like-btn.active {
    color: var(--error-500);
}

.mv-like-btn.active .mv-icon svg {
    fill: var(--error-500);
}

/* Share Dropdown */
.mv-share-dropdown {
    position: relative;
}

.mv-share-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.mv-share-dropdown:hover .mv-share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-8px);
}

.mv-share-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.mv-share-link:hover {
    background: var(--neutral-50);
    color: var(--primary-600);
}

/* ==========================================================================
   Notification Bell
   ========================================================================== */

.mv-notification-bell {
    position: relative;
}

.mv-bell-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-50);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.mv-bell-btn:hover {
    background: var(--neutral-100);
}

.mv-bell-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--error-500);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 360px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.mv-notification-bell:hover .mv-notification-dropdown,
.mv-notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mv-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--neutral-100);
}

.mv-notification-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
}

.mv-mark-all-read {
    background: none;
    border: none;
    font-size: 0.8125rem;
    color: var(--primary-600);
    cursor: pointer;
}

.mv-mark-all-read:disabled {
    color: var(--neutral-400);
    cursor: not-allowed;
}

.mv-notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.mv-notification-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--neutral-50);
    transition: background var(--transition-fast);
}

.mv-notification-item:hover {
    background: var(--neutral-50);
}

.mv-notification-item.unread {
    background: var(--primary-50);
}

.mv-notification-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: var(--radius-full);
    font-size: 1rem;
}

.mv-notification-content {
    flex: 1;
    min-width: 0;
}

.mv-notification-text {
    font-size: 0.875rem;
    color: var(--neutral-700);
    line-height: 1.4;
}

.mv-notification-text strong {
    color: var(--neutral-900);
}

.mv-notification-time {
    font-size: 0.75rem;
    color: var(--neutral-400);
    margin-top: 0.25rem;
}

.mv-notification-footer {
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-top: 1px solid var(--neutral-100);
}

.mv-notification-footer a {
    font-size: 0.875rem;
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   Follow Button
   ========================================================================== */

.mv-follow-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mv-follow-btn:not(.following) {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.mv-follow-btn:not(.following):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mv-follow-btn.following {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 2px solid var(--neutral-200);
}

.mv-follow-btn.following .mv-unfollow-text {
    display: none;
}

.mv-follow-btn.following:hover {
    background: var(--error-50);
    border-color: var(--error-200);
    color: var(--error-600);
}

.mv-follow-btn.following:hover .mv-following-text {
    display: none;
}

.mv-follow-btn.following:hover .mv-unfollow-text {
    display: inline;
}

/* ==========================================================================
   File Card
   ========================================================================== */

.mv-file-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.mv-file-card:hover {
    box-shadow: var(--shadow-md);
}

.mv-file-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
}

.mv-file-icon.pdf { background: #fee2e2; color: #dc2626; }
.mv-file-icon.doc, .mv-file-icon.docx { background: #dbeafe; color: #2563eb; }
.mv-file-icon.xls, .mv-file-icon.xlsx { background: #dcfce7; color: #16a34a; }
.mv-file-icon.ppt, .mv-file-icon.pptx { background: #fef3c7; color: #d97706; }
.mv-file-icon.zip, .mv-file-icon.rar { background: #f3e8ff; color: #9333ea; }

.mv-file-info {
    flex: 1;
    min-width: 0;
}

.mv-file-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mv-file-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.mv-file-download {
    flex-shrink: 0;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.mv-skeleton {
    background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-200) 50%, var(--neutral-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

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

.mv-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--neutral-200);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mv-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */

.mv-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
}

.mv-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 360px;
    animation: toast-in 0.3s ease;
}

@keyframes toast-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mv-toast.removing {
    animation: toast-out 0.3s ease forwards;
}

@keyframes toast-out {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.mv-toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.mv-toast-success .mv-toast-icon { background: var(--success-100); color: var(--success-600); }
.mv-toast-error .mv-toast-icon { background: var(--error-100); color: var(--error-600); }
.mv-toast-warning .mv-toast-icon { background: var(--warning-100); color: var(--warning-600); }
.mv-toast-info .mv-toast-icon { background: var(--primary-100); color: var(--primary-600); }

.mv-toast-message {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--neutral-700);
}

.mv-toast-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
}

.mv-toast-close:hover {
    color: var(--neutral-600);
}

/* ==========================================================================
   Tabs
   ========================================================================== */

.mv-tabs {
    border-bottom: 1px solid var(--neutral-200);
    margin-bottom: 1.5rem;
}

.mv-tabs-list {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.mv-tabs-list::-webkit-scrollbar {
    display: none;
}

.mv-tab {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.mv-tab:hover {
    color: var(--neutral-900);
}

.mv-tab.active {
    color: var(--primary-600);
    border-bottom-color: var(--primary-500);
}

.mv-tab-panel {
    display: none;
}

.mv-tab-panel.active {
    display: block;
}

/* ==========================================================================
   Progress Bar
   ========================================================================== */

.mv-progress {
    height: 8px;
    background: var(--neutral-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.mv-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.mv-progress-sm { height: 4px; }
.mv-progress-lg { height: 12px; }

/* ==========================================================================
   Pagination
   ========================================================================== */

.mv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2rem;
}

.mv-pagination-item {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--neutral-700);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mv-pagination-item:hover:not(.active):not(.disabled) {
    background: var(--neutral-50);
    border-color: var(--neutral-300);
}

.mv-pagination-item.active {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: var(--white);
}

.mv-pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Dark Mode Overrides
   ========================================================================== */

[data-theme="dark"] .mv-card,
[data-theme="dark"] .mv-modal,
[data-theme="dark"] .mv-notification-dropdown,
[data-theme="dark"] .mv-toast,
[data-theme="dark"] .mv-share-menu {
    background: var(--neutral-800);
}

[data-theme="dark"] .mv-card-title,
[data-theme="dark"] .mv-modal-title,
[data-theme="dark"] .mv-notification-header h4 {
    color: var(--neutral-100);
}

[data-theme="dark"] .mv-card-excerpt,
[data-theme="dark"] .mv-notification-text,
[data-theme="dark"] .mv-toast-message {
    color: var(--neutral-300);
}

[data-theme="dark"] .mv-form-input,
[data-theme="dark"] .mv-form-textarea,
[data-theme="dark"] .mv-form-select {
    background: var(--neutral-700);
    border-color: var(--neutral-600);
    color: var(--neutral-100);
}

[data-theme="dark"] .mv-btn-secondary {
    background: var(--neutral-700);
    color: var(--neutral-200);
}

[data-theme="dark"] .mv-action-btn {
    background: var(--neutral-700);
    border-color: var(--neutral-600);
    color: var(--neutral-300);
}

[data-theme="dark"] .mv-pagination-item {
    background: var(--neutral-800);
    border-color: var(--neutral-700);
    color: var(--neutral-300);
}
