﻿/* Restricted Country Overlay Styles */
#restrictedCountryOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95) 0%, rgba(255, 68, 68, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
}

.restricted-country-container {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 540px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

.restricted-country-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.restricted-country-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.restricted-country-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

    .restricted-country-subtitle strong {
        color: #e53e3e;
        font-weight: 600;
    }

.restricted-info-box {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

    .info-row:not(:last-child) {
        border-bottom: 1px solid #e2e8f0;
    }

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.status-inactive {
    color: #e53e3e;
    background: #fed7d7;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.restricted-message {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

.restricted-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-back,
.btn-contact {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-back {
    background: #e2e8f0;
    color: #2d3748;
}

    .btn-back:hover {
        background: #cbd5e0;
        transform: translateY(-2px);
    }

.btn-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

.restricted-footer {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

    .restricted-footer small {
        color: #a0aec0;
        font-size: 13px;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .restricted-country-container {
        padding: 36px 24px;
        width: 95%;
    }

    .restricted-country-icon {
        font-size: 56px;
    }

    .restricted-country-title {
        font-size: 26px;
    }

    .restricted-country-subtitle {
        font-size: 16px;
    }

    .restricted-actions {
        flex-direction: column;
    }

    .btn-back,
    .btn-contact {
        width: 100%;
    }
}
