/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dashboard-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    padding: 16px;
    box-shadow: var(--shadow-small);
}

.dashboard-card .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dashboard-card .value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Activity logs table */
.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.activity-table-wrapper {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.activity-table th, .activity-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
}

.activity-table th {
    background-color: var(--color-bg-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

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

.activity-table tr:hover td {
    background-color: var(--color-bg-secondary);
}
