/* Reset & Global Overrides */
#student-dashboard {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dash-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: calc(33.333% - 20px);
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
}

.dash-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-value {
    font-size: 32px;
    font-weight: bold;
    color: #91BD35; /* Default green */
}

.dash-value.gold {
    color: #FFD700; /* Gold */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.dash-value.silver {
    color: #A0A0A0; /* Silver */
    text-shadow: 0 0 5px rgba(160, 160, 160, 0.3);
}

.dash-value.copper {
    color: #CD7F32; /* Copper */
    text-shadow: 0 0 5px rgba(205, 127, 50, 0.3);
}

.dash-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.dash-section h3 {
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: #334155;
}

.dash-section ul {
    list-style: none;
    padding: 0;
}

.dash-section li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.dash-section li:last-child {
    border-bottom: none;
}

.dash-section strong {
    color: #1175ad;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .dash-card {
        width: 100%;
    }
}
