/* Fresh Weather Flip CSS - No Conflicts */
.weather-floating-btn-8473 {
    width: 200px;
    height: 60px;
    perspective: 1000px;
    cursor: pointer;
}

.weather-btn-content-wrapper-8473 {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.weather-front,
.weather-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    flex-direction: column;
}

.weather-back {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    transform: rotateY(180deg);
    line-height: 1.2 !important;
    font-size: var(--weather-back-text-size, 12px) !important;
}

.weather-back div {
    line-height: 1.1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.weather-floating-btn-8473.flipped .weather-btn-content-wrapper-8473 {
    transform: rotateY(180deg);
}

.weather-icon-display-8473 {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    font-size: var(--weather-front-icon-size, 16px);
}

.weather-temp-display-8473 {
    font-weight: bold;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    font-size: var(--weather-front-text-size, 10px);
}
