/* انیمیشن برای نمایش نرم کادر */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* استایل‌های کانتینر اصلی پیام خطا */
.telegram-error-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* استفاده از رنگ پس‌زمینه اصلی شما با کمی شفافیت */
    background-color: rgba(18, 18, 18, 0.95); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    font-family: 'Vazirmatn', sans-serif; /* فونت وزیرمتن یا فونت دلخواه شما */
}

/* استایل کادر پیام */
.telegram-error-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg, #1c1c1c); /* رنگ کارت از استایل شما */
    border-radius: 15px;
    border: 1px solid var(--border-color, #444);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 24rem;
    margin: auto;
    animation: fadeIn 0.3s ease-out; /* اعمال انیمیشن */
}

/* استایل آیکون خطا */
.telegram-error-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem auto;
    color: var(--primary-color, #ff2a8a); /* رنگ اصلی شما */
}

/* استایل عنوان اصلی */
.telegram-error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color, #f1f1f1); /* رنگ متن اصلی شما */
    margin-bottom: 0.75rem;
}

/* استایل متن اصلی */
.telegram-error-text {
    color: var(--text-secondary, #ecf0f1); /* رنگ متن ثانویه شما */
    line-height: 1.7;
}

/* استایل متن زیرنویس (قرمز رنگ) */
.telegram-error-subtitle {
    color: var(--primary-color, #ff2a8a); /* رنگ اصلی شما برای تاکید */
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}