/* Create this folder and file */
.premium-weather-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e1e2e, #2d2d44);
    color: white;
    overflow: hidden;
    position: relative;
}

.pw-design-iphone {
    background: linear-gradient(135deg, #1e1e2e, #2d2d44);
    color: white;
}

.pw-design-fruitful {
    background: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.pw-design-dark {
    background: #121212;
    color: #ffffff;
}

.pw-design-light {
    background: #f8f9fa;
    color: #212529;
}

.pw-design-modern {
    background: #ffffff;
    color: #2c3e50;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pw-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pw-home-icon {
    font-size: 18px;
    margin-right: 5px;
}

.pw-location {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pw-temp {
    font-size: 48px;
    font-weight: 300;
    margin: 10px 0;
}

.pw-condition {
    font-size: 16px;
    opacity: 0.8;
}

.pw-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.pw-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.pw-section h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
    opacity: 0.7;
}

.pw-section .pw-value {
    font-size: 24px;
    font-weight: bold;
}

.pw-error {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* Basic transition styles */
.pw-transition-slide-top {
    animation: slideInTop 0.5s ease-out;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pw-transition-fade {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pw-transition-slide-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pw-transition-slide-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pw-transition-zoom-in {
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.pw-transition-zoom-out {
    animation: zoomOut 0.5s ease-out;
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

.pw-transition-flip {
    animation: flipIn 0.5s ease-out;
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.pw-transition-rotate {
    animation: rotateIn 0.5s ease-out;
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.pw-transition-bounce {
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.pw-transition-none {
    /* No animation */
}