:root {
    --bg-color: #121212;
    --card-bg: #4a6fa5;
    /* Matches the blue in the image roughly */
    --text-color: #ffffff;
    --accent-color: #4a90e2;
    --font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-container {
    display: flex;
    gap: 10px;
}

input {
    flex-grow: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #222;
    color: white;
    font-size: 16px;
}

button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background-color: var(--card-bg);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.9;
}

.station-list {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
}

.recent-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -10px;
    /* Pull closer to search bar */
    margin-bottom: 20px;
}

.recent-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recent-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.station-item {
    padding: 12px;
    border-bottom: 1px solid #333;
    cursor: pointer;
}

.station-item:hover {
    background-color: #333;
}

.monitor-card {
    background: linear-gradient(135deg, #4a6fa5 0%, #3b5985 100%);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.monitor-wrapper {
    position: relative;
}

/* Fullscreen 80% Height Logic with 70/30 Split */
.monitor-wrapper.fullscreen-active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.monitor-wrapper.fullscreen-active .monitor-content-flex {
    height: 80vh;
    /* 80% of viewport height */
    width: 95vw;
    /* Maximize width */
    align-items: stretch;
    /* Stretch children to fill height */
    max-width: none;
    /* Remove max-width restriction */
}

.monitor-wrapper.fullscreen-active .monitor-card {
    flex: 7;
    /* 70% width */
    height: 100% !important;
    max-width: none;
}

.monitor-wrapper.fullscreen-active .weather-widget-container {
    flex: 3;
    /* 30% width */
    height: 100% !important;
    width: auto;
    /* Reset fixed width */
    max-width: none;
}

.monitor-wrapper:fullscreen {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.monitor-wrapper:fullscreen .monitor-card {
    width: 100%;
    max-width: 1200px;
    /* Allow it to grow larger */
    padding: 40px;
    /* Scale up fonts */
}

.monitor-wrapper:fullscreen h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.monitor-wrapper:fullscreen .departure-row {
    font-size: 32px;
    margin-bottom: 24px;
}

.monitor-wrapper:fullscreen .line-badge {
    font-size: 28px;
    padding: 8px 16px;
    min-width: 60px;
}

.monitor-wrapper:fullscreen .footer {
    font-size: 18px;
    margin-top: 40px;
}

h1 {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 700;
}

.departure-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
}

.line-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 12px;
    min-width: 40px;
    text-align: center;
    font-size: 16px;
}

/* Line colors - heuristic based on line name/type */
.line-S {
    background-color: #4caf50;
    color: white;
}

/* S-Bahn Green */
.line-U {
    background-color: #2196f3;
    color: white;
}

/* U-Bahn Blue */
.line-Tram {
    background-color: #f44336;
    color: white;
}

/* Tram Red */
.line-Bus {
    background-color: #004d40;
    color: white;
}

/* Bus Dark Green/Teal */
.line-Default {
    background-color: #607d8b;
    color: white;
}

.destination {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.time {
    font-weight: 700;
    white-space: nowrap;
}

.footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.6;
}

.hidden {
    display: none;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    animation: blink 1s infinite;
    color: #ffeb3b;
    /* Optional: Make it yellow for more attention */
}

/* Weather backgrounds */
/* Weather backgrounds */
body.weather-clear {
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    /* Bright Blue Sky */
}

body.weather-cloudy {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body.weather-rainy {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
}

body.weather-snowy {
    background: linear-gradient(135deg, #29386f 0%, #b8f5ff 100%);
    /* Frosty Blue */
}

body.weather-foggy {
    background: linear-gradient(135deg, #606c88 0%, #3f4c6b 100%);
}

/* Fullscreen weather backgrounds */
body.weather-clear .monitor-wrapper:fullscreen {
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
}

body.weather-cloudy .monitor-wrapper:fullscreen {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body.weather-rainy .monitor-wrapper:fullscreen {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
}

body.weather-snowy .monitor-wrapper:fullscreen {
    background: linear-gradient(135deg, #29386f 0%, #b8f5ff 100%);
}

body.weather-foggy .monitor-wrapper:fullscreen {
    background: linear-gradient(135deg, #606c88 0%, #3f4c6b 100%);
}

/* Weather particles container */
.weather-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.monitor-wrapper:fullscreen .weather-particles {
    position: fixed;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.monitor-card {
    position: relative;
    z-index: 1;
}

/* Base particle styling */
.particle {
    position: absolute;
    pointer-events: none;
}

/* Rain particles */
.particle-rainy {
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5), transparent);
    animation: rain-fall linear infinite;
    filter: blur(0.5px);
}

/* Varied rain drop lengths for more realism */
.particle-rainy:nth-child(3n) {
    height: 15px;
    animation-duration: 0.6s;
    opacity: 0.7;
}

.particle-rainy:nth-child(3n+1) {
    height: 20px;
    animation-duration: 0.8s;
    opacity: 0.8;
}

.particle-rainy:nth-child(3n+2) {
    height: 25px;
    animation-duration: 1s;
    opacity: 0.9;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(calc(100vh + 100px)) translateX(10px);
    }
}

/* Snow particles */
.particle-snowy {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    animation: snow-fall linear infinite;
    filter: blur(0.3px);
}

/* Varied snow sizes and speeds */
.particle-snowy:nth-child(4n) {
    font-size: 10px;
    animation-duration: 8s;
    opacity: 0.7;
}

.particle-snowy:nth-child(4n+1) {
    font-size: 14px;
    animation-duration: 10s;
    opacity: 0.85;
}

.particle-snowy:nth-child(4n+2) {
    font-size: 18px;
    animation-duration: 12s;
    opacity: 0.9;
}

.particle-snowy:nth-child(4n+3) {
    font-size: 12px;
    animation-duration: 9s;
    opacity: 0.8;
}

@keyframes snow-fall {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
    }

    100% {
        transform: translateY(calc(100vh + 100px)) translateX(80px) rotate(360deg);
    }
}

/* Clear weather - sun rays */
.particle-clear {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 0, 0.4), rgba(255, 200, 0, 0.3), transparent);
    animation: sun-rays-rotate linear infinite;
    filter: blur(0.5px);
}

/* Varied sun ray sizes and speeds */
.particle-clear:nth-child(3n) {
    width: 120px;
    animation-duration: 15s;
    opacity: 0.5;
}

.particle-clear:nth-child(3n+1) {
    width: 180px;
    animation-duration: 20s;
    opacity: 0.6;
}

.particle-clear:nth-child(3n+2) {
    width: 150px;
    animation-duration: 18s;
    opacity: 0.55;
}

@keyframes sun-rays-rotate {
    0% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
        transform: rotate(180deg) translateY(-10px);
    }

    100% {
        transform: rotate(360deg) translateY(0);
        opacity: 0.2;
    }
}

/* Cloudy - floating clouds */
.particle-cloudy {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
    filter: blur(8px);
    animation: cloud-drift linear infinite;
}

/* Varied cloud sizes and speeds */
.particle-cloudy:nth-child(5n) {
    width: 80px;
    height: 40px;
    animation-duration: 25s;
    opacity: 0.6;
}

.particle-cloudy:nth-child(5n+1) {
    width: 120px;
    height: 60px;
    animation-duration: 30s;
    opacity: 0.7;
}

.particle-cloudy:nth-child(5n+2) {
    width: 100px;
    height: 50px;
    animation-duration: 28s;
    opacity: 0.65;
}

.particle-cloudy:nth-child(5n+3) {
    width: 90px;
    height: 45px;
    animation-duration: 26s;
    opacity: 0.6;
}

.particle-cloudy:nth-child(5n+4) {
    width: 110px;
    height: 55px;
    animation-duration: 32s;
    opacity: 0.75;
}

@keyframes cloud-drift {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Foggy particles */
.particle-foggy {
    background: radial-gradient(ellipse at center, rgba(200, 200, 220, 0.25), rgba(180, 180, 200, 0.15), transparent);
    filter: blur(20px);
    animation: fog-drift ease-in-out infinite;
}

/* Varied fog sizes and speeds */
.particle-foggy:nth-child(6n) {
    width: 250px;
    height: 120px;
    animation-duration: 30s;
}

.particle-foggy:nth-child(6n+1) {
    width: 300px;
    height: 150px;
    animation-duration: 35s;
}

.particle-foggy:nth-child(6n+2) {
    width: 200px;
    height: 100px;
    animation-duration: 28s;
}

.particle-foggy:nth-child(6n+3) {
    width: 280px;
    height: 140px;
    animation-duration: 32s;
}

.particle-foggy:nth-child(6n+4) {
    width: 220px;
    height: 110px;
    animation-duration: 29s;
}

.particle-foggy:nth-child(6n+5) {
    width: 260px;
    height: 130px;
    animation-duration: 33s;
}

@keyframes fog-drift {
    0% {
        transform: translateY(-150px) translateX(0);
        opacity: 0;
    }

    25% {
        opacity: 0.3;
        transform: translateY(25vh) translateX(10px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(50vh) translateX(-10px);
    }

    75% {
        opacity: 0.3;
        transform: translateY(75vh) translateX(5px);
    }

    100% {
        transform: translateY(calc(100vh + 150px)) translateX(0);
        opacity: 0;
    }
}

/* Flex container for monitor and widget */
.monitor-content-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}

.monitor-card {
    flex: 1;
    min-width: 300px;
}

/* Weather Widget Styles */
.weather-widget-container {
    width: 100%;
    max-width: 350px;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1s ease;
    opacity: 0;
}

.night_bg {
    background: linear-gradient(#0F2129, #47334A);
    opacity: 1;
}

.frosty_bg {
    background: linear-gradient(#29386f, #b8f5ff);
}

.sunny_bg {
    background: linear-gradient(#ffbd3f, #fff097);
}

.rainy_bg {
    background: linear-gradient(#1e3c72, #2a5298);
}

.cloudy_bg {
    background: linear-gradient(#2c3e50, #34495e);
}

.foggy_bg {
    background: linear-gradient(#606c88, #3f4c6b);
}

/* State-based visibility */
.weather-widget-container.weather-sunny .sunny_bg {
    opacity: 1;
}

.weather-widget-container.weather-sunny .night_bg {
    opacity: 0;
}

.weather-widget-container.weather-sunny .frosty_bg {
    opacity: 0;
}

.weather-widget-container.weather-frosty .frosty_bg {
    opacity: 1;
}

.weather-widget-container.weather-frosty .night_bg {
    opacity: 0;
}

.weather-widget-container.weather-frosty .sunny_bg {
    opacity: 0;
}

.weather-widget-container.weather-night .night_bg {
    opacity: 1;
}

.weather-widget-container.weather-night .sunny_bg {
    opacity: 0;
}

.weather-widget-container.weather-night .frosty_bg {
    opacity: 0;
}

.weather-widget-container.weather-rainy .rainy_bg {
    opacity: 1;
}

.weather-widget-container.weather-rainy .night_bg {
    opacity: 0;
}

.weather-widget-container.weather-rainy .sunny_bg {
    opacity: 0;
}

.weather-widget-container.weather-rainy .frosty_bg {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .cloudy_bg {
    opacity: 1;
}

.weather-widget-container.weather-cloudy .night_bg {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .sunny_bg {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .frosty_bg {
    opacity: 0;
}

.weather-widget-container.weather-foggy .foggy_bg {
    opacity: 1;
}

.weather-widget-container.weather-foggy .night_bg {
    opacity: 0;
}

.weather-widget-container.weather-foggy .sunny_bg {
    opacity: 0;
}

.weather-widget-container.weather-foggy .frosty_bg {
    opacity: 0;
}


.text_container {
    margin-top: 60px;
    /* Increased margin to prevent overlap */
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.degrees {
    color: #4F787D;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    font-size: 80px;
    font-weight: bold;
    transition: color 1s ease;
    line-height: 1;
    margin-bottom: 20px;
}

.degrees span:first-child {
    /* Temperature number */
    z-index: 2;
}

.degrees span:last-child {
    /* Degree symbol */
    font-size: 40px;
    margin-top: 10px;
    z-index: 2;
}

.place {
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #694c6d;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 1s ease;
    font-size: 24px;
    /* Explicit font size */
    z-index: 10;
}

.weather-widget-container.weather-sunny .place {
    color: #f7a526;
}

.weather-widget-container.weather-frosty .place {
    color: #4497bf;
}

.weather-widget-container.weather-night .place {
    color: #694c6d;
}

.weather-widget-container.weather-rainy .place {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-widget-container.weather-cloudy .place {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-widget-container.weather-foggy .place {
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.weather {
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
    opacity: 0.9;
}

/* Circle Animation */
.circle_container {
    position: absolute;
    bottom: 200px;
    left: 100px;
    animation: circleAnimation 20s ease infinite;
}

@keyframes circleAnimation {
    0% {
        bottom: 200px;
        left: 100px;
    }

    50% {
        bottom: 150px;
        left: 200px;
    }

    100% {
        bottom: 200px;
        left: 100px;
    }
}

.circle {
    position: relative;
    z-index: 7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 9px 9px 0 0 #BCAE76;
    transform: rotate(100deg);
    transition: all 1s ease;
}

/* Circle State Changes */
.weather-widget-container.weather-sunny .circle {
    box-shadow: 0px 0px 0 0 #BCAE76;
    background-color: #ffdb50;
    top: 10px;
    left: -15px;
}

.weather-widget-container.weather-frosty .circle {
    box-shadow: 0px 0px 0 0 #BCAE76;
    background-color: #feffdf;
    top: 10px;
    left: -15px;
}

.weather-widget-container.weather-night .circle,
.weather-widget-container.weather-rainy .circle,
.weather-widget-container.weather-cloudy .circle,
.weather-widget-container.weather-foggy .circle {
    box-shadow: 9px 9px 0 0 #BCAE76;
    background: none;
    top: 0;
    left: 0;
}

.circle1,
.circle2,
.circle3 {
    background-color: #BCAE76;
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    transition: background-color 1s ease;
}

.circle1 {
    height: 90px;
    width: 90px;
    z-index: 6;
    top: -5px;
    left: -30px;
}

.circle2 {
    height: 110px;
    width: 110px;
    z-index: 6;
    top: -15px;
    left: -40px;
}

.circle3 {
    height: 130px;
    width: 130px;
    z-index: 6;
    top: -25px;
    left: -50px;
}

.weather-widget-container.weather-sunny .circle1,
.weather-widget-container.weather-sunny .circle2,
.weather-widget-container.weather-sunny .circle3 {
    background: #ffdb50;
}

.weather-widget-container.weather-frosty .circle1,
.weather-widget-container.weather-frosty .circle2,
.weather-widget-container.weather-frosty .circle3 {
    background: #feffdf;
}

.weather-widget-container.weather-night .circle1,
.weather-widget-container.weather-night .circle2,
.weather-widget-container.weather-night .circle3,
.weather-widget-container.weather-rainy .circle1,
.weather-widget-container.weather-rainy .circle2,
.weather-widget-container.weather-rainy .circle3,
.weather-widget-container.weather-cloudy .circle1,
.weather-widget-container.weather-cloudy .circle2,
.weather-widget-container.weather-cloudy .circle3,
.weather-widget-container.weather-foggy .circle1,
.weather-widget-container.weather-foggy .circle2,
.weather-widget-container.weather-foggy .circle3 {
    background: #BCAE76;
}


/* Ground */
.ground1,
.ground2 {
    position: absolute;
    z-index: 2;
    transition: opacity 1s ease;
    opacity: 0;
}

.ground1 {
    width: 270px;
    height: 150px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    bottom: -50px;
    left: -20px;
    transform: rotate(20deg);
}

.ground2 {
    width: 500px;
    height: 150px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    bottom: -70px;
    right: -80px;
    transform: rotate(-10deg);
}

.ground1_night,
.ground2_night {
    background: linear-gradient(#2f2b3c, #091B21);
    opacity: 1;
}

.ground1_frosty,
.ground2_frosty {
    background: linear-gradient(#f3ffff, #9af2ff);
}

.ground1_sunny,
.ground2_sunny {
    background: linear-gradient(#e0d7a4, #e7c77a);
}

.ground1_rainy,
.ground2_rainy {
    background: linear-gradient(#1e3c72, #16222a);
}

.ground1_cloudy,
.ground2_cloudy {
    background: linear-gradient(#2c3e50, #1a252f);
}

.ground1_foggy,
.ground2_foggy {
    background: linear-gradient(#606c88, #2b303b);
}

/* Ground State Visibility */
.weather-widget-container.weather-sunny .ground1_sunny,
.weather-widget-container.weather-sunny .ground2_sunny {
    opacity: 1;
}

.weather-widget-container.weather-sunny .ground1_night,
.weather-widget-container.weather-sunny .ground2_night {
    opacity: 0;
}

.weather-widget-container.weather-sunny .ground1_frosty,
.weather-widget-container.weather-sunny .ground2_frosty {
    opacity: 0;
}

.weather-widget-container.weather-frosty .ground1_frosty,
.weather-widget-container.weather-frosty .ground2_frosty {
    opacity: 1;
}

.weather-widget-container.weather-frosty .ground1_night,
.weather-widget-container.weather-frosty .ground2_night {
    opacity: 0;
}

.weather-widget-container.weather-frosty .ground1_sunny,
.weather-widget-container.weather-frosty .ground2_sunny {
    opacity: 0;
}

.weather-widget-container.weather-night .ground1_night,
.weather-widget-container.weather-night .ground2_night {
    opacity: 1;
}

.weather-widget-container.weather-night .ground1_sunny,
.weather-widget-container.weather-night .ground2_sunny {
    opacity: 0;
}

.weather-widget-container.weather-night .ground1_frosty,
.weather-widget-container.weather-night .ground2_frosty {
    opacity: 0;
}

.weather-widget-container.weather-rainy .ground1_rainy,
.weather-widget-container.weather-rainy .ground2_rainy {
    opacity: 1;
}

.weather-widget-container.weather-rainy .ground1_night,
.weather-widget-container.weather-rainy .ground2_night {
    opacity: 0;
}

.weather-widget-container.weather-rainy .ground1_sunny,
.weather-widget-container.weather-rainy .ground2_sunny {
    opacity: 0;
}

.weather-widget-container.weather-rainy .ground1_frosty,
.weather-widget-container.weather-rainy .ground2_frosty {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .ground1_cloudy,
.weather-widget-container.weather-cloudy .ground2_cloudy {
    opacity: 1;
}

.weather-widget-container.weather-cloudy .ground1_night,
.weather-widget-container.weather-cloudy .ground2_night {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .ground1_sunny,
.weather-widget-container.weather-cloudy .ground2_sunny {
    opacity: 0;
}

.weather-widget-container.weather-cloudy .ground1_frosty,
.weather-widget-container.weather-cloudy .ground2_frosty {
    opacity: 0;
}

.weather-widget-container.weather-foggy .ground1_foggy,
.weather-widget-container.weather-foggy .ground2_foggy {
    opacity: 1;
}

.weather-widget-container.weather-foggy .ground1_night,
.weather-widget-container.weather-foggy .ground2_night {
    opacity: 0;
}

.weather-widget-container.weather-foggy .ground1_sunny,
.weather-widget-container.weather-foggy .ground2_sunny {
    opacity: 0;
}

.weather-widget-container.weather-foggy .ground1_frosty,
.weather-widget-container.weather-foggy .ground2_frosty {
    opacity: 0;
}


/* Fullscreen adjustments */
.monitor-wrapper:fullscreen .monitor-content-flex {
    max-width: 1600px;
    /* Increased width */
    align-items: center;
}

.monitor-wrapper:fullscreen .monitor-card {
    max-width: 1000px;
    /* Increased width */
}