/* ============================================
   TaskFlow Dashboard - Red/Black/White Theme
   ============================================ */

/* CSS Variables */
:root {
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;

    --black: #0a0a0a;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;

    --primary: var(--red-600);
    --primary-hover: var(--red-700);
    --primary-light: var(--red-50);
    --bg: var(--gray-100);
    --sidebar-bg: var(--gray-900);
    --sidebar-text: var(--gray-300);
    --card-bg: var(--white);
    --text: var(--gray-800);
    --text-light: var(--gray-500);
    --border: var(--gray-200);

    --sidebar-width: 260px;
    --header-height: 60px;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.15);
    --transition: all 0.2s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-hover); }

/* ---- LOGIN PAGE ---- */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

.login-box {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.login-box .logo h1 {
    font-size: 28px;
    color: var(--gray-900);
    font-weight: 800;
}

.login-box .logo h1 span { color: var(--primary); }

.login-box .logo p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
}

/* ---- LAYOUT ---- */
.app-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.sidebar-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--gray-700);
}

.sidebar-header h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.sidebar-header h1 span { color: var(--primary); }

.sidebar-nav { flex: 1; padding: 12px 0; }

.nav-section {
    padding: 0 12px;
    margin-bottom: 8px;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    padding: 8px 12px 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--sidebar-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-item:hover {
    background: var(--gray-800);
    color: var(--white);
}

.nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.nav-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.nav-item .badge {
    margin-left: auto;
    background: var(--gray-700);
    color: var(--gray-300);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

.nav-item.active .badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.sidebar-projects {
    padding: 0 12px;
}

.project-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-700);
}

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

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.user-details { flex: 1; min-width: 0; }
.user-details .name { font-size: 14px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-details .role { font-size: 12px; color: var(--gray-500); }

/* Main content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Header */
.page-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
}

.page-header h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); }

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

/* Content area */
.content-area { padding: 24px 32px; }

/* ---- CARDS ---- */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 { font-size: 16px; font-weight: 600; }
.card-body { padding: 20px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); color: var(--white); }

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

.btn-danger { background: var(--red-500); color: var(--white); }
.btn-danger:hover { background: var(--red-700); color: var(--white); }

.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--gray-100); }

.btn-ghost { background: transparent; color: var(--text-light); padding: 6px 10px; }
.btn-ghost:hover { background: var(--gray-100); color: var(--text); }

.btn-sm { padding: 5px 12px; font-size: 13px; }
.btn-lg { padding: 12px 24px; font-size: 16px; }
.btn-icon { padding: 8px; width: 36px; height: 36px; justify-content: center; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--red-100);
}

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }

/* ---- GRID ---- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- STAT CARDS ---- */
.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-icon.red { background: var(--red-100); color: var(--primary); }
.stat-icon.dark { background: var(--gray-200); color: var(--gray-800); }
.stat-icon.green { background: #dcfce7; color: #16a34a; }
.stat-icon.blue { background: #dbeafe; color: #2563eb; }

.stat-value { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.stat-label { font-size: 13px; color: var(--text-light); }

/* ---- BOARD VIEW (Kanban) ---- */
.board-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    min-height: calc(100vh - 200px);
}

.board-column {
    min-width: 300px;
    max-width: 340px;
    flex-shrink: 0;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}

.column-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--gray-300);
}

.column-header .count {
    background: var(--gray-300);
    color: var(--gray-600);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.column-tasks {
    flex: 1;
    padding: 8px;
    min-height: 100px;
    overflow-y: auto;
}

.task-card {
    background: var(--white);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    cursor: grab;
    transition: var(--transition);
}

.task-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.task-card.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
}

.task-card .task-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 8px;
    cursor: pointer;
}

.task-card .task-title:hover { color: var(--primary); }

.task-card .task-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.task-card .task-meta .tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.priority-urgent { background: var(--red-100); color: var(--red-700); }
.priority-high { background: #fef3c7; color: #d97706; }
.priority-medium { background: #dbeafe; color: #2563eb; }
.priority-low { background: var(--gray-100); color: var(--gray-600); }

.task-card .assignee-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-left: auto;
}

.task-card .due-date {
    font-size: 12px;
    color: var(--text-light);
}

.task-card .due-date.overdue { color: var(--red-600); font-weight: 600; }

.add-task-btn {
    padding: 8px;
    text-align: center;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    margin: 4px 8px 8px;
    transition: var(--transition);
}

.add-task-btn:hover { background: var(--gray-200); color: var(--text); }

.add-column-btn {
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.add-column-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Quick add task inline */
.quick-add {
    padding: 8px;
    display: none;
}

.quick-add.active { display: block; }

.quick-add input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

/* ---- LIST VIEW ---- */
.list-view { width: 100%; }

.list-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.list-table th {
    background: var(--gray-100);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.list-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.list-table tr:hover { background: var(--gray-100); }

.list-table .task-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.list-table .task-check:hover { border-color: var(--primary); }
.list-table .task-check.completed { background: var(--primary); border-color: var(--primary); }

/* ---- TIMELINE VIEW ---- */
.timeline-container {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.timeline-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.timeline-header .day {
    min-width: 40px;
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
}

.timeline-header .day.today { color: var(--primary); font-weight: 700; }

.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    position: relative;
}

.timeline-label {
    width: 200px;
    flex-shrink: 0;
    font-size: 13px;
    padding-right: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timeline-bar-container {
    flex: 1;
    position: relative;
    height: 28px;
}

.timeline-bar {
    position: absolute;
    height: 24px;
    border-radius: 4px;
    top: 2px;
    font-size: 11px;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.timeline-bar:hover { opacity: 0.85; }
.timeline-bar.priority-urgent { background: var(--red-600); }
.timeline-bar.priority-high { background: #d97706; }
.timeline-bar.priority-medium { background: #2563eb; }
.timeline-bar.priority-low { background: var(--gray-500); }

/* ---- VIEW TABS ---- */
.view-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: 8px;
}

.view-tab {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.view-tab:hover { color: var(--text); background: var(--white); }
.view-tab.active { background: var(--white); color: var(--text); box-shadow: var(--shadow); }

/* ---- TASK DETAIL MODAL ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    display: none;
}

.modal-overlay.active { display: flex; }

.modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.modal-body { padding: 24px; }

.modal-body .task-field {
    margin-bottom: 20px;
}

.modal-body .task-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 6px;
    display: block;
}

/* Comments section */
.comments-section { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }

.comment-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-item .comment-body {
    flex: 1;
    background: var(--gray-100);
    padding: 10px 14px;
    border-radius: 8px;
}

.comment-item .comment-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.comment-item .comment-time {
    font-size: 12px;
    color: var(--text-light);
}

.comment-item .comment-text {
    font-size: 14px;
    margin-top: 4px;
}

.comment-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.comment-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}

.comment-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Attachments */
.attachment-list { list-style: none; }

.attachment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13px;
}

.attachment-item .file-icon { font-size: 18px; }
.attachment-item .file-size { color: var(--text-light); font-size: 12px; }

/* ---- PROJECT CARDS ---- */
.project-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

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

.project-card .card-accent {
    height: 4px;
    width: 100%;
}

.project-card .card-content { padding: 20px; }
.project-card .card-content h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.project-card .card-content p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }

.project-card .progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.project-card .progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.project-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.members-stack {
    display: flex;
}

.members-stack .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-700);
    margin-left: -8px;
}

.members-stack .avatar:first-child { margin-left: 0; }

/* ---- ALERTS ---- */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: var(--red-50); color: var(--red-700); border: 1px solid var(--red-200); }

/* ---- TABLE ---- */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.data-table tr:hover { background: var(--gray-100); }

/* ---- BADGES ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-active { background: #dcfce7; color: #166534; }
.badge-inactive { background: var(--gray-200); color: var(--gray-600); }
.badge-admin { background: var(--red-100); color: var(--red-700); }
.badge-member { background: #dbeafe; color: #2563eb; }

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state .icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { color: var(--text); margin-bottom: 8px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .content-area { padding: 16px; }
    .page-header { padding: 12px 16px; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .board-container { padding: 0 16px 16px; }
    .board-column { min-width: 280px; }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        font-size: 20px;
    }
}

.mobile-toggle { display: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ---- CHARTS (simple CSS) ---- */
.chart-bar-container {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding-top: 10px;
}

.chart-bar-wrap { display: flex; flex-direction: column; align-items: center; flex: 1; }

.chart-bar {
    width: 100%;
    max-width: 60px;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.chart-bar-label {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}

.chart-bar-value {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Color picker small */
.color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option:hover, .color-option.selected { border-color: var(--gray-900); transform: scale(1.1); }

/* ---- UTILITIES ---- */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.text-sm { font-size: 13px; }
.text-muted { color: var(--text-light); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }
