.arena-weather-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    color: #222;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    
    /* Temanın inadını kıran zorunlu yükseklik (Ortalama bir değer girdim) */
    height: 250px !important; 
}

.arena-weather-header {
    background-color: #cc0000;
    color: #fff;
    padding: 12px 15px;
    text-align: center;
}

.arena-weather-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
}

/* İç boşluğu 20px'ten 10px'e düşürdük */
.arena-weather-body {
    padding: 10px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* İkon ile alttaki kutu arasındaki boşluğu 20px'ten 10px'e düşürdük */
.arena-weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px; 
}

/* 80px olan ikonu 60px yaptık */
.arena-weather-icon-box {
    background: #f5f5f5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.arena-weather-icon-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.arena-weather-temp-box {
    display: flex;
    flex-direction: column;
}

/* 42px olan derece yazısını 36px yaptık */
.arena-weather-temp {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: #222;
}

.arena-weather-desc {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* Alttaki Hissedilen/Rüzgar kutusunun iç boşluğunu 12px'ten 8px'e çektik */
.arena-weather-details {
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 8px 10px;
    border: 1px solid #f0f0f0;
}

.arena-w-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.arena-w-detail-item:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.arena-w-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.arena-w-value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.arena-weather-footer {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    padding: 10px 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
}