.bod-meteo-icon svg path {
    filter: none;
}

.widgetable {
    padding-top: 0 !important;
    padding-right: 0 !important;
    text-align: right;
}

.widgetable p {
    display: none;
}

.widgetable,
.widgetable > div {
    height: 100%;
}

.bod-meteo {
    background: #f4f6f8;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 12px;
    font-family: Arial, sans-serif;
    text-align: right;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bod-meteo-bg {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/2019/02/01_totem.jpg');
    background-size: cover;
    background-position: center;
    /*filter: grayscale(100%);*/
}

.bod-meteo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 251, 254, 0.7);
}

.bod-meteo-content {
    position: relative;
    z-index: 2;
    /*padding-top: 30px;*/
}

.bod-meteo-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
    border-left: 4px solid #f57c00;
    padding-left: 10px;
}

.bod-meteo-temp {
    font-size: 40px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f90;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}


.bod-meteo-datetime {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
}


.bod-meteo-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bod-meteo-icon svg {
    width: 100%;
    height: 100%;
}

/*.bod-meteo-icon .emoji {
    width: 40px !important;
    height: 40px !important;
    max-width: none !important;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}*/

.bod-meteo-details {
    margin-top: 10px;
    padding: 22px 0 10px 0;
    font-size:16px;
    color: #000;
    line-height: 1.0;
}

.bod-meteo {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}




/* ICON BASE */
.bod-meteo-icon svg {
    width: 60px;
    height: 60px;
}

.meteo-line .icon {
    display: inline-flex;
    align-items: center;
}

.meteo-line svg {
    position: relative;
    top: -5px; /* 🔧 ajustezi aici */
}


/* ☀️ SUN ***/
.sun {
    fill: #FDB813;
    animation: rotateSun 10s linear infinite;
    filter: 
        drop-shadow(0 2px 4px rgba(0,0,0,0.25))
        drop-shadow(0 0 6px rgba(253,184,19,0.5));
}

.sun .rays line {
    stroke: #FDB813;
    stroke-width: 2;
}

@keyframes rotateSun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* ☁️ CLOUD NOU (2 nori animați) */

.clouds {
    width: 60px;
    height: 60px;
    position: relative;
}

.cloud-svg {
    width: 100%;
    height: 100%;
}

/* ☀️ SOARE */
.sun-part {
    animation: sunPulse 4s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 6px rgba(253,184,19,0.6));
}

.sun-group {
    transform-origin: 30px 20px;
}

/* RAZE */
.sun-rays {
    stroke: #FDB813;
    stroke-width: 2;
    stroke-linecap: round;
    animation: rotateSun 8s linear infinite;
    transform-origin: 30px 20px;
}

/* DISC */
.sun-core {
    fill: #FDB813;
    filter: drop-shadow(0 0 6px rgba(253,184,19,0.6));
}

/* animație rotație */
@keyframes rotateSun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@keyframes sunPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* nor mare */
.cloud-big {
    animation: cloudFloatBig 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25))
            drop-shadow(0 0 4px rgba(0,0,0,0.1));
    filter: blur(0.2px) drop-shadow(0 3px 5px rgba(0,0,0,0.25));
}

/* nor mic */
.cloud-small {
    animation: cloudFloatSmall 4s ease-in-out infinite;
    opacity: 0.9;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.2));
}

.cloud-small ellipse,
.cloud-small circle {
    fill: #B0BEC5;
}

/* mișcare lentă naturală */
@keyframes cloudFloatBig {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(6px); }
}

@keyframes cloudFloatSmall {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-4px); }
}


/* 🌧️ RAIN ***/
.rain {
    position: relative;
}

.rain .drops {
    position: absolute;
    top: 30px;
    left: 10px;
    width: 40px;
    height: 40px;
}

.rain .drops::before,
.rain .drops::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    background: #2196F3;
    border-radius: 2px;
    animation: rainDrop 0.6s linear infinite;
}

.rain .drops::before {
    left: 5px;
}

.rain .drops::after {
    left: 20px;
    animation-delay: 0.3s;
}

.drop {
    transform: rotate(10deg); /* efect de vânt */
}



@keyframes rainDrop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/***️ Snow ***/
.snow {
    position: relative;
    width: 60px;
    height: 60px;
}

/* bază */
.flake {
    position: absolute;
    animation: snowFall linear infinite;
}

.snow .flake path {
    stroke: #E3F2FD; /* mai deschis, mai contrast */
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}



.flake path {
    filter:
        drop-shadow(0 1px 2px rgba(0,0,0,0.6))
        drop-shadow(0 0 6px rgba(255,255,255,0.9));
}


/* mic */
.flake:nth-child(1) {
    width:12px;
    height:12px;
    left: 5px;
    animation-duration: 2s;
}

/* mediu */
.flake:nth-child(2) {
    width: 16px;
    height: 16px;
    left: 20px;
    animation-duration: 3s;
}

/* mare */
.flake:nth-child(3) {
    width: 20px;
    height: 20px;
    left: 35px;
    animation-duration: 4s;
}

/* extra */
.flake:nth-child(4) {
    width: 14px;
    height: 14px;
    left: 10px;
    animation-duration: 2.5s;
}

/* extra */
.flake:nth-child(5) {
    width: 16px;
    height: 16px;
    left: 30px;
    animation-duration: 3.5s;
}

@keyframes snowFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(12px) translateX(3px) rotate(90deg);
    }
    100% {
        transform: translateY(25px) translateX(-3px) rotate(180deg);
        opacity: 0;
    }
}

.flake:nth-child(4) { width: 10px; left: 10px; animation-duration: 2.5s; }
.flake:nth-child(5) { width: 14px; left: 30px; animation-duration: 3.5s; }

/***iconițe mici ***/

.meteo-line {
/*     width: 14px;
    height: 14px;*/
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: flex;
    align-items: right;
    justify-content: right;
    gap:15px;
    margin-bottom: 4px;
    opacity: 0.95;
    width: 95%;
}


.meteo-line .icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: inline-flex;
}

.meteo-line svg {
    width: 100%;
    height: 100%;
    fill: #37474F;
    stroke: none;
    filter:drop-shadow(0 1px 1px rgba(0,0,0,0.25))
        drop-shadow(0 0 2px rgba(0,0,0,0.1));
}

/* 🌡 temperatură */
.meteo-line:nth-child(1) svg {
    fill: #EF5350;
}

/* 💨 vânt */
.meteo-line:nth-child(2) svg {
    fill: #42A5F5;
}

/* 💧 umiditate */
.meteo-line:nth-child(3) svg {
    fill: #29B6F6;
}

/* 🌅 răsărit */
.meteo-line:nth-child(4) svg {
    stroke: #FFA726;
    fill: none;
}


/* 🌇 apus */
.meteo-line:nth-child(5) svg {
    stroke: #EF6C00;
    fill: #EF6C00;
}


/* mic efect vizual */
.meteo-line svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}