.container-country {
            max-width: 1200px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 20px;
            padding: 20px;
        }
        
        .top-cities-container {
            max-width: 1200px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color: white;
        }
        
        .top-cities-header {
            padding: 20px;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            color: white;
            text-align: center;
        }
        
        .top-cities-header h2 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .top-cities-header p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .top-cities-content {
            padding: 20px;
        }
        
        .accordion {
            width: 100%;
        }
        
        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .accordion-header {
            padding: 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background-color: #e9ecef;
        }
        
        .country-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .flag {
            width: 40px;
            height: 30px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }
        
        .country-name {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
            color: #6c757d;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .button-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 15px;
            margin-bottom: 15px;
            padding: 0 10px;
        }

        .prayer-btn {
            flex: 1;
            min-width: 140px;
            padding: 14px 12px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #5cb0bf, #3a5f73);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
            text-decoration: none;
            text-align: center;
        }

        .prayer-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #4ca1af, #2c3e50);
        }

        .prayer-btn i {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #fff;
        }
        
        .accordion-item.active .accordion-header {
            background-color: #e3f2fd;
        }
        
        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
            color: #1a73e8;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 500px;
        }
        
        .location-status {
            margin: 15px 0;
            padding: 10px 15px;
            border-radius: 8px;
            background-color: #e8f5e9;
            color: #2e7d32;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 1000px;
            width: 100%;
        }
        
        .location-status.error {
            background-color: #ffebee;
            color: #c62828;
        }
        
        .location-status.info {
            background-color: #e3f2fd;
            color: #1565c0;
        }
        
        .detection-options {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        .detection-btn {
            padding: 8px 15px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        
        .detection-btn:hover {
            background: #388E3C;
        }
        
        .detection-btn.secondary {
            background: #757575;
        }
        
        .detection-btn.secondary:hover {
            background: #616161;
        }
        
        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
            }
            
            .prayer-btn {
                min-width: 100%;
            }
            
            .detection-options {
                flex-direction: column;
            }
        }