/* =============================================
   ACOMPANHA - Estilos Principais
   Theme: Dark Modern com verde (#19E21A)
   ============================================= */

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

:root {
    --bg-primary: #0f1419;
    --bg-secondary: #151b23;
    --bg-card: #1a2332;
    --bg-hover: #1f2b3d;
    --bg-input: #151b23;
    --border: rgba(255,255,255,0.06);
    --border-focus: #19E21A;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent: #19E21A;
    --accent-hover: #15B817;
    --accent-glow: rgba(25, 226, 26, 0.15);
    --danger: #f85149;
    --warning: #d29922;
    --info: #58a6ff;
    --success: #19E21A;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --transition: 0.2s ease;
}

html {
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* ========================
   Login Page
   ======================== */
.login-bg {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

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

.login-logo {
    height: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(25, 226, 26, 0.15));
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-footer {
    margin-top: 32px;
    text-align: center;
}

.login-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================
   Form Elements
   ======================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input-icon input {
    padding-left: 38px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
select,
.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    transition: var(--transition);
    width: 100%;
}

input:focus, select:focus, .form-input:focus {
    background: var(--bg-hover);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

input::placeholder {
    color: var(--text-muted);
}

.form-color {
    height: 42px;
    padding: 4px;
    cursor: pointer;
}

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

.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #0a1a0a;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 226, 26, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
    background: var(--bg-hover);
}

.btn-full { width: 100%; }

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8125rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-icon:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.btn-danger:hover {
    color: var(--danger) !important;
    background: rgba(248, 81, 73, 0.1) !important;
}

/* ========================
   Alerts
   ======================== */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.alert-error {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.2);
    color: #f85149;
}

.alert-success {
    background: rgba(25, 226, 26, 0.1);
    border: 1px solid rgba(25, 226, 26, 0.2);
    color: #19E21A;
}

.alert-info {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    color: #58a6ff;
}

/* ========================
   App Layout
   ======================== */
.app-body {
    display: flex;
    min-height: 100vh;
}

/* ========================
   Sidebar
   ======================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform 0.3s ease;
}

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

.sidebar-logo {
    height: 36px;
    filter: drop-shadow(0 0 12px rgba(25, 226, 26, 0.1));
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.125rem;
    cursor: pointer;
}

.cycle-selector {
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.cycle-selector select {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.8125rem;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 2px;
    text-decoration: none;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--accent-glow);
    color: var(--accent);
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 0.875rem;
}

.nav-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.nav-item.active .nav-badge {
    background: rgba(25, 226, 26, 0.15);
    color: var(--accent);
}

.nav-divider {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 16px 14px 6px;
}

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

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

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-role {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

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

.topbar {
    height: var(--topbar-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
}

.topbar-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex: 1;
}

.topbar-title h1 {
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-title h1 i {
    font-size: 0.875rem;
    color: var(--accent);
}

.topbar-cycle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    padding: 4px 12px;
    border-radius: 20px;
}

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

.content-area {
    padding: 24px;
    max-width: 1400px;
}

/* ========================
   Cards
   ======================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.card-header h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header h3 i {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-body {
    padding: 20px;
}

/* Hero Card */
.card-hero {
    background: linear-gradient(135deg, var(--bg-card), #1a3328);
    border-color: rgba(25, 226, 26, 0.1);
}

.card-hero-content {
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-chart-wrapper {
    position: relative;
    flex-shrink: 0;
}

.hero-chart-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-percent {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-delivery {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-numbers {
    display: flex;
    gap: 32px;
}

.hero-number {
    display: flex;
    flex-direction: column;
}

.hero-number .number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-number .number.green {
    color: var(--accent);
}

.hero-number .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sector Cards Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dashboard-grid .card-hero {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .dashboard-grid .card-hero {
        grid-column: 1 / 3;
    }
}

.card-sector {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

.card-sector:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.sector-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.sector-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.sector-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.sector-chart-wrapper {
    position: relative;
}

.sector-chart-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 700;
}

.sector-card-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sector-card-footer strong {
    color: var(--text-secondary);
}

/* ========================
   Tables
   ======================== */
.table-responsive {
    overflow-x: auto;
}

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

.data-table thead th {
    background: var(--bg-secondary);
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: var(--bg-hover);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

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

.sector-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

/* ========================
   Progress Bar
   ======================== */
.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    min-width: 80px;
}

.progress-bar-sm {
    height: 6px;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.cell-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 36px;
}

/* ========================
   Task Checkboxes
   ======================== */
.task-checkbox {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.task-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: var(--bg-input);
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6875rem;
    color: #0a1a0a;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.task-checkbox input:checked + .checkmark {
    background: var(--check-color, var(--accent));
    border-color: var(--check-color, var(--accent));
}

.task-checkbox input:checked + .checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.task-checkbox:hover .checkmark {
    border-color: var(--text-muted);
}

.task-checkbox.just-checked .checkmark {
    animation: checkPop 0.4s ease;
}

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

.client-name {
    font-weight: 500;
}

.col-client { min-width: 180px; }
.col-task { min-width: 60px; }
.col-progress { min-width: 140px; }
.col-done, .col-remain { min-width: 60px; }

.count-done {
    color: var(--accent);
    font-weight: 600;
}

.count-remain {
    color: var(--text-muted);
    font-weight: 600;
}

/* ========================
   Sector Stats Bar
   ======================== */
.sector-stats-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-number.green {
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-chart {
    margin-left: auto;
    flex-direction: row;
    gap: 12px;
}

.stat-percent {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ========================
   Settings
   ======================== */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.settings-item-name {
    font-weight: 500;
    font-size: 0.875rem;
}

.settings-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.settings-item-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.settings-item-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

.badge-active {
    background: rgba(25, 226, 26, 0.1);
    color: var(--accent);
}

.badge-inactive {
    background: rgba(248, 81, 73, 0.1);
    color: var(--danger);
}

.badge-admin {
    background: rgba(88, 166, 255, 0.1);
    color: var(--info);
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 32px 16px;
    font-size: 0.875rem;
}

/* ========================
   Modais
   ======================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

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

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.2s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ========================
   Toast
   ======================== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 300;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    background: #0d3317;
    border: 1px solid rgba(25, 226, 26, 0.3);
    color: var(--accent);
}

.toast-error {
    background: #3d1518;
    border: 1px solid rgba(248, 81, 73, 0.3);
    color: var(--danger);
}

.toast-info {
    background: #172238;
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: var(--info);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .sidebar-close {
        display: block;
    }

    .sidebar-toggle {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .content-area {
        padding: 16px;
    }

    .card-hero-content {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .hero-numbers {
        justify-content: center;
    }

    .sector-stats-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }

    .stat-chart {
        width: 100%;
        justify-content: center;
    }

    .settings-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .topbar-cycle {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-numbers {
        flex-wrap: wrap;
        gap: 16px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Scrollbar
   ======================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

/* ========================
   Animations
   ======================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    animation: fadeIn 0.3s ease forwards;
}

.dashboard-grid .card:nth-child(2) { animation-delay: 0.05s; }
.dashboard-grid .card:nth-child(3) { animation-delay: 0.1s; }
.dashboard-grid .card:nth-child(4) { animation-delay: 0.15s; }
.dashboard-grid .card:nth-child(5) { animation-delay: 0.2s; }
.dashboard-grid .card:nth-child(6) { animation-delay: 0.25s; }
.dashboard-grid .card:nth-child(7) { animation-delay: 0.3s; }
.dashboard-grid .card:nth-child(8) { animation-delay: 0.35s; }
.dashboard-grid .card:nth-child(9) { animation-delay: 0.4s; }
.dashboard-grid .card:nth-child(10) { animation-delay: 0.45s; }
.dashboard-grid .card:nth-child(11) { animation-delay: 0.5s; }
