/* Weather Sidebar Widget - Modern Blue Gradient Style */
.wx-sb {
    background: linear-gradient(145deg, #1e73be, #155a96);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.2);
    font-family: 'Noto Kufi Arabic', sans-serif;
}

.wx-main {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wx-city {
    font-size: 13px;
    font-weight: 700;
    opacity: .9;
    margin-bottom: 5px;
}

.wx-temp {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.wx-cond {
    font-size: 12px;
    opacity: .8;
    margin-top: 5px;
}

.wx-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
}

.wx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wx-city-sm {
    background: rgba(21, 90, 150, 0.4);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.wx-city-sm:hover {
    background: rgba(255, 255, 255, 0.1);
}

.wx-city-sm-ic {
    font-size: 20px;
}

.wx-city-info {
    display: flex;
    flex-direction: column;
}

.wx-city-nm {
    font-size: 11px;
    opacity: .8;
    font-weight: 600;
}

.wx-city-tp {
    font-size: 16px;
    font-weight: 800;
}
