/* ========================================
   DASHBOARD TABLES - ORDERS & HELP FILES
   ======================================== */

/* Dashboard Table Base */
.dashboard-table {
    border-collapse: separate;
    border-spacing: 0;
}

.dashboard-table tbody tr {
    transition: background-color 0.2s ease;
}

.dashboard-table tbody tr:hover {
    background-color: #f7fafc !important;
}

/* Orders Table Styling */
.order-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-company-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.order-info {
    display: flex;
    flex-direction: column;
}

.order-name {
    font-size: 0.9375rem;
    color: #1e232f;
    font-weight: 600;
    line-height: 1.4;
}

.order-company {
    font-size: 0.8125rem;
    color: #718096;
    line-height: 1.3;
}

.order-amount {
    font-size: 0.9375rem;
    color: #1e232f;
    font-weight: 700;
}

.order-date {
    font-size: 0.8125rem;
    color: #718096;
}

.order-status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: capitalize;
    white-space: nowrap;
    background-color: #e2e8f0;
    color: #4a5568;
}

/* Help Files Table Styling */
.help-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
}

.help-link:hover {
    color: oklch(.5 .134 242.749);
}

.help-link:hover .help-title {
    color: oklch(.5 .134 242.749);
}

.help-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e232f;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.help-subtitle {
    font-size: 0.8125rem;
    color: #718096;
    line-height: 1.3;
}

/* Table Footer Styling */
.dashboard-table tfoot td {
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard-table tfoot a {
    color: oklch(.5 .134 242.749);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dashboard-table tfoot a:hover {
    color: oklch(.45 .134 242.749);
    text-decoration: underline;
}

/* Remove borders for cleaner look */
.dashboard-table tbody tr:first-child td {
    border-top: none;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: 1px solid #e2e8f0;
}

/* ========================================
   REPORT TABLES - GLOBAL & YEARLY
   ======================================== */

/* Report Label & Value Styling */
.report-label {
    font-size: 0.9375rem;
    color: #1e232f;
    font-weight: 500;
    line-height: 1.4;
}

.report-value {
    font-size: 0.9375rem;
    color: #1e232f;
    font-weight: 600;
    line-height: 1.4;
}

.report-month {
    font-size: 0.9375rem;
    color: #1e232f;
    font-weight: 600;
    line-height: 1.4;
}