/*@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');*/
@import url('./fonts/fa/Vazirmatn-FD-font-face.css');

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f4f6f9;
}

/* استایل دکمه‌های پاسخ‌دهی */
.btn-option {
    text-align: right;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background-color: #fff;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-option:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.btn-option.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: bold;
}

/* انیمیشن نرم تعویض سوال */
.fade-in {
    animation: fadeIn 0.35s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* سفارشی‌سازی Highcharts برای RTL */
.highcharts-title, .highcharts-subtitle {
    font-family: 'Vazirmatn', sans-serif !important;
}


/* کپسول‌های ۵ حوزه طرحواره */
.domain-card {
    text-align: center;
    position: relative;
}

.capsule-wrapper {
    height: 240px;
    width: 100%;
    border: 2px solid var(--domain-color);
    border-radius: 100px 100px 0 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px 15px 10px;
}

/* آیکون بالای کپسول */
.capsule-icon {
    font-size: 2.8rem;
    color: #6c757d;
    z-index: 2;
}

/* پرشدگی درصدی رنگی از پایین به بالا */
.capsule-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--domain-bg);
    transition: height 1s ease-in-out;
    z-index: 1;
}

/* درصد متنی روی کپسول */
.capsule-percentage {
    font-size: 1.6rem;
    font-weight: 800;
    color: #212529;
    z-index: 2;
    margin-bottom: 5px;
}

/* خط پایه زیر هر کپسول */
.domain-base-line {
    height: 5px;
    width: 100%;
    background-color: var(--domain-color);
    margin-top: 4px;
    border-radius: 2px;
}

/* عنوان حوزه زیر خط */
.domain-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--domain-color);
    margin-top: 8px;
}