/* PogodaPolska Stylesheet */
.pp-weather-container, .pp-special-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
}

.pp-search-box {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.pp-input-group {
    display: flex;
    gap: 10px;
}

.pp-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.pp-input-group button {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.pp-input-group button:hover {
    background: #004b99;
}

/* Wyniki pogodowe */
.pp-result-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pp-main-temp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.pp-temp-val {
    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.pp-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}

.pp-attraction-box {
    margin-top: 20px;
    padding: 15px;
    background: #eef7ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

/* Strefy reklamowe */
.pp-ad-zone {
    margin: 20px 0;
    text-align: center;
    background: #fafafa;
    border: 1px dashed #ccc;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RWD */
@media (max-width: 600px) {
    .pp-input-group {
        flex-direction: column;
    }
    .pp-temp-val {
        font-size: 36px;
    }
}