.imkers-dashboard {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.imkers-dashboard h2 {
    color: #2c5f2d;
    text-align: center;
}

.current-weather {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.weather-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.weather-info span {
    font-size: 1.1em;
    color: #333;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.forecast-day {
    background: white;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.imker-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.score-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.score-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.score-value {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.grade-A { background: #4caf50; color: white; }
.grade-B { background: #8bc34a; color: white; }
.grade-C { background: #ffc107; color: black; }
.grade-D { background: #ff9800; color: white; }
.grade-E { background: #f44336; color: white; }

.score-comment {
    color: #666;
    font-size: 0.9em;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #999;
    font-size: 0.8em;
    margin-top: 20px;
}