.p4x-meteo-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    font-size: var(--p4x-font-size, 16px);
}

.p4x-refresh-box {
    position: absolute;
    top: 15px;
    right: 15px;
}

.p4x-refresh-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9em;
}

.p4x-refresh-btn:hover {
    background: #357abd;
    transform: rotate(360deg);
}

.p4x-refresh-btn:disabled {
    background: #a0c4ff;
    cursor: wait;
}

.p4x-current {
    text-align: center;
    padding: 20px;
    margin: 30px 0;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.1em;
}

.p4x-icon {
    font-size: 3em;
    margin: 15px 0;
}

.p4x-temp {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
}

.p4x-desc {
    color: #7f8c8d;
    font-size: 1em;
}

.p4x-forecast {
    margin-top: 20px;
}

.p4x-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
    padding: 15px 0;
}

.p4x-day {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    font-size: 0.9em;
}

.p4x-day:hover {
    transform: translateY(-5px);
    background: #f1f1f1;
}

.p4x-date {
    font-weight: 600;
    margin-bottom: 10px;
    color: #34495e;
    font-size: 1em;
}

.p4x-day .p4x-icon {
    font-size: 2em;
    margin: 10px 0;
}

.p4