
        /* Layout dla układu ze stopką zawsze na dole */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
        main {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            display: flex;
            flex-direction: column;
        }

        .main-content {
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        footer {
            flex-shrink: 0;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            padding: 0.5rem 0;
        }

        /* Dla mapy pogodowej - specyficzne style */
        .weather-container {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .weather-content {
            flex: 1;
            overflow: hidden;
        }

        .weather-row {
            height: 100%;
            display: flex;
            gap: 0.5rem;
        }

        .map-panel {
            position: relative;
            flex: 1;
        }

        #weather-map {
            height: 100% !important;
            width: 100% !important;
        }

        /* Data i godzina na mapie */
        .weather-datetime {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        /* Informacja o dacie i wersji GFS */
        .weather-date-time-info {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: normal;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
            z-index: 1000;
            text-align: left;
            min-width: 300px;
            /* POPRAWKA: Usuń margines i dostosuj do okna mapy */
            max-width: calc(100% - 40px);
            line-height: 1.3;
        }
        
        /* Info o wschodzie/zachodzie słońca na środku górnej krawędzi */
        .weather-sun-info {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 13px;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
            border: 1px solid rgba(0, 115, 183, 0.2);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .weather-sun-info .sun-info {
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }
        
        .weather-sun-info .sun-info i {
            font-size: 12px;
        }

        .weather-date-time-info .forecast-date {
            font-size: 12px;
            font-weight: normal;
            color: #333;
            margin-bottom: 2px;
        }

        .weather-date-time-info .gfs-info {
            font-size: 11px;
            color: #666;
            font-weight: normal;
        }

        /* Strzałki nawigacji na mapie */
        .map-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100px;
            height: 100px;
            padding: 20px;
            background: transparent;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999999 !important;
            transition: all 0.3s ease;
            box-shadow: none;
            pointer-events: auto !important;
        }

        /* Widoczna część strzałki - wewnętrzny element */
        .map-arrow::before {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #007bff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .map-arrow:hover::before {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .map-arrow:disabled,
        .map-arrow[style*="opacity: 0.3"] {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .map-arrow[style*="opacity: 0.3"]::before {
            background: rgba(200, 200, 200, 0.5);
            border-color: #ccc;
        }

        .map-arrow[style*="opacity: 0.3"]:hover::before {
            transform: none;
        }

        .map-arrow-left {
            left: 10px;
        }

        .map-arrow-right {
            right: 10px;
        }

        .map-arrow i {
            font-size: 16px;
            color: #333;
            pointer-events: none;
        }
        .btn-menu {
            border: 1px solid #eee;
            border-radius: 5px;
            padding: 5px;
            margin: 5px;
            background: white;
            /* efekt 3D: cień i lekka perspektywa, podobnie jak w .logo-cumulus */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-menu:hover {
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .btn-menu:active {
            transform: scale(0.98) translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        /* Style dla przycisków w panelu admina */
        .admin-panel-btn {
            background-color: #2563eb;
            color: white;
            border: 1px solid #1e40af;
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            cursor: pointer;
            width: 100%;
        }
        
        .admin-panel-btn:hover {
            background-color: #1d4ed8;
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .admin-panel-btn:active {
            transform: scale(0.98) translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
