/* Faseq Dashboard */
.fq-dash-body .eq-main { padding: 1.5rem; max-width: none; }

.fq-dash { max-width: 1400px; margin: 0 auto; }

.fq-dash-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.fq-dash-sub {
    font-size: 0.9rem;
    color: var(--fq-gray-500);
    margin: 0.25rem 0 0;
}

.fq-dash-section { margin-bottom: 0; }
.fq-dash-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fq-dash-table { display: flex; flex-direction: column; }

.fq-dash-table__row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--fq-gray-100);
    font-size: 0.875rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: background 0.15s;
}

.fq-dash-table__row:hover:not(.fq-dash-table__row--head) {
    background: var(--fq-gray-50);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.fq-dash-table__row--head {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fq-gray-500);
    border-bottom-color: var(--fq-gray-200);
}

.fq-dash-table__row small { color: var(--fq-gray-400); }

.fq-dash-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.fq-dash-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--fq-gray-100);
    font-size: 0.875rem;
}

.fq-dash-list a { color: var(--fq-navy); text-decoration: none; font-weight: 500; }
.fq-dash-list a:hover { text-decoration: underline; }
.fq-dash-list small { color: var(--fq-gray-400); flex-shrink: 0; margin-left: 1rem; }

.fq-dash-ai-items { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }

.fq-dash-ai-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #eef3fa 100%);
    border-radius: 10px;
    border: 1px solid var(--fq-gray-200);
}

.fq-dash-ai-item p {
    font-size: 0.85rem;
    color: var(--fq-gray-500);
    margin: 0.35rem 0 0.5rem;
}

.fq-dash-main { display: flex; flex-direction: column; gap: 1.5rem; }

@media (max-width: 768px) {
    .fq-dash-table__row { grid-template-columns: 1fr 1fr; }
    .fq-dash-table__row span:nth-child(3),
    .fq-dash-table__row span:nth-child(4) { display: none; }
}
