/* Widget Fő Konténer */
.csaba-widget-wrapper {
    background-color: #1e2633; /* Sötétkék-szürke alap */
    color: #e0e5ec;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* WP betűtípushoz igazodik */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* Fix Fejléc (Névnap) */
.csaba-widget-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #a0aabc;
}

.csaba-widget-header strong {
    color: #00d2ff; /* Türkiz kiemelés a mai névnapra */
    font-size: 1.1em;
}

/* Dinamikus rész (Ez fog animálódni) */
.csaba-widget-body {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

/* Az osztály, amit a JS rátesz az áttűnéskor */
.csaba-widget-body.fade-out {
    opacity: 0;
}

.csaba-city-title {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Időjárás és Hőmérséklet sor */
.csaba-weather-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.csaba-icon-container {
    font-size: 2em; /* Ideiglenes emoji méret */
    color: #00d2ff;
}

.csaba-temp-container {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.csaba-celsius {
    font-size: 0.5em;
    vertical-align: top;
    color: #a0aabc;
}

.csaba-desc {
    font-size: 1em;
    text-transform: capitalize;
}

/* Csillagászati rész (Nap és Hold) */
.csaba-astro-main {
    display: flex;
    justify-content: space-around;
    font-size: 0.85em;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 8px;
    color: #a0aabc;
}


/* SVG Ikon formázása és neon hatás */
.csaba-icon-container svg {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0px 0px 8px rgba(0, 210, 255, 0.4));
    transition: transform 0.3s ease;
}

/* Egy kis pulzáló effekt rámutatáskor, hogy interaktívabbnak tűnjön */
.csaba-icon-container:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 12px rgba(0, 210, 255, 0.7));
}

/* Reszponzivitás álló méretre optimalizálva */
@media (max-width: 480px) {
    .csaba-astro-main {
        flex-direction: column;
        gap: 5px;
    }
}