        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body, html {
            height: 100%;
            overflow: hidden;
            background-color: #0b1528;
        }

        #map {
            width: 100%;
            height: 100vh;
            cursor: crosshair;
        }

        .leaflet-popup-content-wrapper {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .leaflet-popup-content {
            font-size: 14px;
            text-align: center;
            line-height: 1.6;
            padding: 5px;
            min-width: 220px;
        }
        
        .popup-title {
            font-weight: bold;
            color: #2c3e50;
            font-size: 15px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
            margin-bottom: 8px;
        }

        .popup-time {
            color: #27ae60;
            font-size: 18px;
            font-weight: bold;
            margin-top: 5px;
            background: #ebf5fb;
            padding: 6px 10px;
            border-radius: 6px;
            display: inline-block;
            border: 1px dashed #3498db;
        }

        .dst-badge {
            display: block;
            font-size: 11px;
            color: #e67e22;
            font-weight: bold;
            margin-top: 4px;
        }

        .popup-coords {
            font-size: 11px;
            color: #7f8c8d;
            margin-top: 8px;
            direction: ltr;
        }
		
        /* تنسيق علامات الاستاد */
        .stadium-tooltip {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 5px;
            border: 2px solid #ffd700;
            font-size: 14px;
        }

        /* تنسيق نافذة الاستاد */
        .stadium-popup {
            min-width: 280px;
            padding: 10px;
        }

        .stadium-popup .popup-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 8px;
            margin-bottom: 8px;
        }

        .weather-section {
            margin-top: 10px;
            padding: 10px;
            background: #f0f8ff;
            border-radius: 8px;
            border-right: 4px solid #3498db;
        }

        .weather-title {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .weather-info div {
            margin: 3px 0;
            color: #34495e;
        }

        .prayer-section {
            margin-top: 10px;
            padding: 10px;
            background: #f5f0ff;
            border-radius: 8px;
            border-right: 4px solid #8e44ad;
        }

        .prayer-title {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .prayer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
            text-align: center;
        }

        .prayer-item {
            background: white;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .prayer-item .prayer-name {
            font-size: 11px;
            color: #7f8c8d;
            font-weight: bold;
        }

        .prayer-item .prayer-time {
            font-size: 13px;
            color: #2c3e50;
            font-weight: bold;
            direction: ltr;
        }

        .prayer-item.active {
            background: #8e44ad;
            color: white;
        }

        .prayer-item.active .prayer-name {
            color: #f0e6ff;
        }

        .prayer-item.active .prayer-time {
            color: white;
        }

        .popup-footer {
            margin-top: 10px;
            font-size: 12px;
            color: #7f8c8d;
            font-style: italic;
            border-top: 1px solid #ecf0f1;
            padding-top: 5px;
        }

        .dst-badge {
            display: inline-block;
            background: #f39c12;
            color: white;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 12px;
            margin-top: 5px;
        }

        .weather-temp {
            font-size: 24px;
            font-weight: bold;
            color: #e74c3c;
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 10px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .countdown-timer {
            margin-top: 8px;
            font-size: 14px;
            color: #8e44ad;
            font-weight: bold;
        }

        .local-time-display {
            font-size: 12px;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
