/* Dashboard Styles */
:root {
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-container {
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.dashboard-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.dashboard-divider {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.step-list {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.step-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.dashboard-grid-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}

.progress-bar-container {
    margin-top: 1rem;
    background-color: #f1f1f1;
    border-radius: 4px;
    height: 8px;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    background-color: var(--success-color);
}

.progress-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #777;
}

.resource-list {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.resource-list li {
    margin-bottom: 0.5rem;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.resource-link i {
    margin-right: 0.5rem;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-header .btn {
        margin-top: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}