body { margin: 0; padding: 0; background: transparent; }

.my-weather-informer {
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #fff;
    overflow: hidden;
}
.my-weather-informer .informer-head {
    background: #960909; /* Ваш фірмовий колір */
    color: #fff;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}
.my-weather-informer .current-weather {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 10px;
    background: #e3f2fd; /* Легкий блакитний фон для поточної погоди */
    border-bottom: 1px solid #bbdefb;
}
.my-weather-informer .current-temp {
    font-size: 38px;
    font-weight: bold;
    color: #1565c0;
}
.my-weather-informer .current-info {
    text-align: center;
}
.my-weather-informer .current-desc {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: -5px;
}
.my-weather-informer .current-details {
    font-size: 11px;
    color: #555;
    margin-top: 5px;
}
.my-weather-informer table.forecast-list {
    width: 100%;
    border-collapse: collapse;
}
.my-weather-informer .forecast-list td {
    padding: 8px 10px;
    border-bottom: 1px solid #f1f3f5;
    font-size: 13px;
    color: #333;
    text-align: center;
    vertical-align: middle;
}
.my-weather-informer .forecast-list td.day-name {
    text-align: left;
    font-weight: bold;
    font-size: 12px;
}
.my-weather-informer .forecast-list td img {
    width: 35px;
    height: 35px;
    display: block;
    margin: 0 auto;
}
.my-weather-informer .temp-day { color: #d32f2f; font-weight: bold; }
.my-weather-informer .temp-night { color: #1976d2; }

.my-weather-informer .informer-foot {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #f9f9f9;
    font-size: 11px;
    color: #777;
    border-top: 1px solid #ddd;
}