#map {
    height: 800px;
    width: 100%;
}
.advanced-marker {
    background-color: #9b59b6;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}
.weather-description {
    margin: 10px 0;
    font-weight: 500;
}
.forecast-day {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    height: 100%;
}

.weather-details {
    text-align: left;
    font-size: 0.9em;
    margin-top: 10px;
}

.weather-details p {
    margin-bottom: 0.5rem;
}

/* Modal Weather */

.weather-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.weather-card .date {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.weather-card .weather-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 15px;
    margin: 10px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-card .weather-icon img {
    filter: brightness(1.8);
}

.weather-card .temp {
    font-size: 1.3em;
    margin: 10px 0;
}

.weather-details-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px;
}

.weather-details-card p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* List view styles */
.weather-list {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.weather-list-item {
    display: grid;
    grid-template-columns: 160px 80px 200px auto;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.weather-list-item:hover {
    background-color: #f8f9fa;
}

.weather-list-item .date {
    font-weight: 600;
    color: #2a5298;
}

.weather-list-item .weather-icon {
    width: 60px;
    height: 60px;
    background: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.weather-list-item .weather-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(2);
}

.weather-list-item .temp {
    font-size: 0.95em;
}

.weather-list-item .description {
    color: #666;
    font-weight: 500;
}

.weather-list-item .expanded-details {
    grid-column: 1 / -1;
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
    color: white;
    display: none;
}

.weather-list-item.expanded .expanded-details {
    display: block;
}

.weather-list-item .expanded-details .row {
    display: flex;
    justify-content: space-between;
}

.weather-list-item .expanded-details p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Score */
.score-marker {
    font-family: Arial, sans-serif;
    font-size: 14px;
}