/* Weerstation Widget Styling - Responsive Design */
.weerstation-widget {
    display: block;
    width: 1200px;
    max-width: 100%;
    height: 400px;
    margin: 20px auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-sizing: border-box;
}

.weerstation-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 3px rgba(255, 255, 255, 0.15) inset,
                0 0 40px rgba(0, 0, 0, 0.15) inset;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.weerstation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.75) 0%, rgba(118, 75, 162, 0.75) 100%);
    z-index: 0;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

/* Screen reflection effect */
.weerstation-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0;
}

/* New Layout Structure */
.weerstation-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Left Side */
.weerstation-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: space-between;
}

.weerstation-dag-nummer {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.weerstation-plaats {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.weerstation-land {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.weerstation-date {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin-top: 8px;
}

.weerstation-website-naam {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin-top: auto;
}

/* Right Side */
.weerstation-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex: 1;
}

.weerstation-icon {
    font-size: 80px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.weerstation-temp-dag {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.weerstation-temp-nacht-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weerstation-moon-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.weerstation-temp-nacht {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments - Mobile (same layout, smaller fonts) */
@media (max-width: 1200px) {
    .weerstation-widget {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 300px;
        margin: 20px 0;
        padding: 0;
    }
    
    .weerstation-screen {
        padding: 20px;
        min-height: 300px;
    }
    
    .weerstation-dag-nummer {
        font-size: 36px;
    }
    
    .weerstation-plaats {
        font-size: 36px;
    }
    
    .weerstation-land {
        font-size: 28px;
    }
    
    .weerstation-date {
        font-size: 14px;
    }
    
    .weerstation-website-naam {
        font-size: 12px;
    }
    
    .weerstation-icon {
        font-size: 60px;
    }
    
    .weerstation-temp-dag {
        font-size: 36px;
    }
    
    .weerstation-temp-nacht {
        font-size: 28px;
    }
    
    .weerstation-moon-icon {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .weerstation-widget {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 260px;
        margin: 15px 0;
        padding: 0;
    }
    
    .weerstation-screen {
        padding: 15px;
        min-height: 260px;
    }
    
    .weerstation-layout {
        gap: 15px;
    }
    
    .weerstation-left {
        gap: 10px;
    }
    
    .weerstation-right {
        gap: 12px;
    }
    
    .weerstation-dag-nummer {
        font-size: 28px;
    }
    
    .weerstation-plaats {
        font-size: 28px;
    }
    
    .weerstation-land {
        font-size: 22px;
    }
    
    .weerstation-date {
        font-size: 12px;
    }
    
    .weerstation-website-naam {
        font-size: 11px;
    }
    
    .weerstation-icon {
        font-size: 48px;
    }
    
    .weerstation-temp-dag {
        font-size: 28px;
    }
    
    .weerstation-temp-nacht {
        font-size: 22px;
    }
    
    .weerstation-moon-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .weerstation-widget {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 225px;
        margin: 0;
        padding: 0;
    }
    
    .weerstation-screen {
        padding: 12px;
        min-height: 225px;
        border-radius: 0;
    }
    
    .weerstation-layout {
        gap: 10px;
    }
    
    .weerstation-left {
        gap: 8px;
    }
    
    .weerstation-right {
        gap: 10px;
    }
    
    .weerstation-dag-nummer {
        font-size: 24px;
    }
    
    .weerstation-plaats {
        font-size: 24px;
    }
    
    .weerstation-land {
        font-size: 18px;
    }
    
    .weerstation-date {
        font-size: 11px;
    }
    
    .weerstation-website-naam {
        font-size: 10px;
    }
    
    .weerstation-icon {
        font-size: 40px;
    }
    
    .weerstation-temp-dag {
        font-size: 24px;
    }
    
    .weerstation-temp-nacht {
        font-size: 20px;
    }
    
    .weerstation-moon-icon {
        font-size: 18px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .weerstation-screen {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
                    0 0 0 3px rgba(255, 255, 255, 0.2) inset,
                    0 0 40px rgba(0, 0, 0, 0.2) inset;
    }
}

