/**
 * Estilos do Gerenciador de Objetivos
 * Design moderno, clean e responsivo
 */

/* ============================================
   VARIÁVEIS E RESET
   ============================================ */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --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;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --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);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.2s ease;
}

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

html {
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--gray-800);
    line-height: 1.5;
}

/* ============================================
   PÁGINA DE LOGIN
   ============================================ */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.logo-icon {
    font-size: 36px;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.login-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Alertas */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition);
}

.toggle-password:hover {
    opacity: 1;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.3rem;
}

.login-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.login-footer p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ============================================
   APLICAÇÃO PRINCIPAL
   ============================================ */
.app-container {
    min-height: 100vh;
    background: var(--gray-50);
}

/* Header */
.app-header {
    background: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.title-icon {
    font-size: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-greeting {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn-icon:hover {
    background: var(--gray-200);
    transform: scale(1.05);
}

/* Navegação de Meses */
.month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.month-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--gray-700);
}

.month-nav-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.month-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.month-selector select {
    padding: 12px 40px 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    color: var(--gray-800);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.month-selector select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Estatísticas Rápidas */
.quick-stats {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.stat-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.stat-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-bar {
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ============================================
   TABELA DE OBJETIVOS
   ============================================ */
.table-wrapper {
    overflow: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 280px);
}

.objectives-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.objectives-table thead {
    position: sticky;
    top: 0;
    z-index: 100;
}

.objectives-table th {
    padding: 12px 8px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
    background: var(--gray-50);
}

.th-objetivo {
    text-align: left;
    min-width: 140px;
    position: sticky;
    left: 0;
    z-index: 110 !important;
    background: var(--gray-50) !important;
    box-shadow: 2px 0 4px rgba(0,0,0,0.05);
}

.th-dia {
    min-width: 44px;
    text-align: center;
}

.th-progress {
    min-width: 60px;
    position: sticky;
    right: 0;
    z-index: 110 !important;
    background: var(--gray-50) !important;
    box-shadow: -2px 0 4px rgba(0,0,0,0.05);
}

.th-dia.weekend {
    background: #fef3c7;
}

.th-dia.today {
    background: var(--primary);
    color: var(--white);
}

.dia-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.dia-num {
    font-size: 0.9rem;
    font-weight: 700;
}

.dia-semana {
    font-size: 0.65rem;
    font-weight: 500;
}

/* Células da tabela */
.objectives-table td {
    padding: 8px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.td-objetivo {
    position: sticky;
    left: 0;
    background: var(--white);
    z-index: 50;
    box-shadow: 2px 0 4px rgba(0,0,0,0.05);
}

.objetivo-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.objetivo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.objetivo-nome {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-800);
    white-space: nowrap;
}

.td-check {
    text-align: center;
}

.td-check.weekend {
    background: #fffbeb;
}

.td-check.today {
    background: rgba(99, 102, 241, 0.1);
}

.td-check.future {
    background: var(--gray-50);
}

.td-progress {
    position: sticky;
    right: 0;
    background: var(--white);
    z-index: 50;
    box-shadow: -2px 0 4px rgba(0,0,0,0.05);
}

/* Botão de check */
.check-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-size: 0.9rem;
    color: var(--white);
}

.check-btn:hover:not(:disabled) {
    border-color: var(--objetivo-cor, var(--primary));
    transform: scale(1.1);
}

.check-btn.checked {
    background: var(--objetivo-cor, var(--primary));
    border-color: var(--objetivo-cor, var(--primary));
    animation: checkPop 0.3s ease;
}

.check-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Progress cell */
.progress-cell {
    display: flex;
    justify-content: center;
}

.progress-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(
        var(--cor, var(--primary)) calc(var(--progress, 0) * 1%),
        var(--gray-200) calc(var(--progress, 0) * 1%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-700);
    position: relative;
}

.progress-ring::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
}

.progress-ring span {
    position: relative;
    z-index: 1;
}

/* Legenda Mobile */
.mobile-legend {
    display: none;
    padding: 16px 24px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    gap: 20px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.today-dot {
    background: var(--primary);
}

.weekend-dot {
    background: #fcd34d;
}

/* ============================================
   MODAIS
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

.modal-lg {
    max-width: 700px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gray-500);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-content form,
.modal-content .config-list,
.modal-content .stats-grid {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 12px;
}

/* Icon Picker */
.icon-picker,
.color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.icon-btn,
.color-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover,
.color-btn:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.icon-btn.selected,
.color-btn.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Config List */
.config-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.config-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.config-item:hover {
    background: var(--gray-100);
}

.config-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.config-item-actions {
    display: flex;
    gap: 8px;
}

.btn-icon-sm {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon-sm:hover {
    background: var(--gray-200);
}

.btn-icon-sm.btn-danger:hover {
    background: #fee2e2;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.stat-objetivo-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-objetivo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-objetivo-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-objetivo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-objetivo-nome {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.stat-objetivo-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-objetivo-progress {
    width: 70px;
    height: 70px;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% { stroke-dasharray: 0 100; }
}

.percentage {
    fill: var(--gray-700);
    font-size: 0.5rem;
    font-weight: 700;
    text-anchor: middle;
}

.stat-objetivo-info {
    flex: 1;
}

.stat-objetivo-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 24px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .app-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .app-title {
        font-size: 1.1rem;
    }
    
    .title-text {
        display: none;
    }
    
    .user-greeting {
        display: none;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .btn-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .month-nav {
        padding: 14px;
        gap: 12px;
    }
    
    .month-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .month-selector select {
        padding: 10px 36px 10px 16px;
        font-size: 1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .stat-main {
        grid-column: span 2;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .table-wrapper {
        padding: 12px;
    }
    
    .objectives-table th {
        padding: 10px 6px;
        font-size: 0.65rem;
    }
    
    .th-objetivo {
        min-width: 100px;
    }
    
    .th-dia {
        min-width: 36px;
    }
    
    .th-progress {
        min-width: 50px;
    }
    
    .dia-num {
        font-size: 0.75rem;
    }
    
    .dia-semana {
        font-size: 0.55rem;
    }
    
    .objectives-table td {
        padding: 6px;
    }
    
    .objetivo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .objetivo-nome {
        font-size: 0.75rem;
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .check-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .progress-ring {
        width: 36px;
        height: 36px;
        font-size: 0.6rem;
    }
    
    .progress-ring::before {
        width: 26px;
        height: 26px;
    }
    
    .mobile-legend {
        display: flex;
    }
    
    .modal-content {
        max-height: 85vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-content form,
    .modal-content .config-list,
    .modal-content .stats-grid {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .icon-btn,
    .color-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 24px 20px;
    }
    
    .btn {
        padding: 12px 20px;
    }
    
    .th-objetivo {
        min-width: 80px;
    }
    
    .objetivo-nome {
        max-width: 45px;
    }
    
    .check-btn {
        width: 24px;
        height: 24px;
    }
    
    .th-dia {
        min-width: 30px;
    }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}
