/* Dashboard Styles */
.dashboard {
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.dashboard-header h1 {
    margin: 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dashboard-card h2 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.dashboard-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-list li {
    margin: 0.75rem 0;
}

.action-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.action-list a:hover {
    color: var(--primary-color-hover, var(--primary-color));
    filter: brightness(110%);
    text-decoration: underline;
}

.text-muted {
    color: var(--text-color); /* Use general text color for muted now, or define a specific muted color */
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}