#country-popup{position: fixed;
            z-index: 1000;
            background: white;
            border-radius: 20px;
            padding: 40px 20px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
						top: 50%; left: 0; right: 0; margin: 0 auto; transform: translatey(-50%);
	display: none;
}
#country-popup .popup-header{text-align: center;margin-bottom: 20px;}
#country-popup .popup-header .popup-icon{width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);}
#country-popup .popup-header .popup-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }
#country-popup .popup-header .popup-title {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }
#country-popup .popup-header .popup-subtitle {
            font-size: 14px;
            color: #718096;
        }

#country-popup .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f7fafc;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #718096;
            font-size: 20px;
        }

#country-popup .close-btn:hover {
            background: #edf2f7;
            color: #2d3748;
            transform: rotate(90deg);
        }
#country-popup .location-btn:hover{border: 1px solid #B543FB}

 #country-popup .location-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

#country-popup .location-btn {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 18px;
            font-size: 16px;
            font-weight: 500;
            color: #2d3748;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

#country-overlay{  position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 999; 
	display: none
}