/* --- تنظیمات عمومی کانتینر --- */
.davari-test-container {
    font-family: inherit;
    direction: rtl;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* --- نوار پیشرفت (تایم لاین) --- */
.davari-progress-wrapper {
    margin-bottom: 25px;
    text-align: right;
}

.davari-progress-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

.davari-progress-bar {
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 6px;
    width: 100%;
    overflow: hidden;
}

.davari-progress-fill {
    background-color: #d4af37;
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* --- استایل عناوین و سوالات --- */
.davari-question-title {
    margin-bottom: 25px;
    text-align: right;
    font-size: 22px;
    font-weight: bold;
    color: #222222;
    line-height: 1.6;
}

/* --- استایل گزینه‌ها --- */
.davari-options-wrapper {
    margin-top: 15px;
}

.davari-option {
    background-color: #ffffff;
    border: 2px solid #eaeaea;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: right;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.davari-option:hover {
    background-color: #fcfcfc;
    border-color: #d4af37;
}

.davari-option.selected {
    background-color: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #ffffff !important;
}

/* --- استایل دکمه‌های فرم --- */
.davari-test-btn {
    background-color: #181a1f;
    color: #d4af37;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    max-width: 350px;
    text-align: center;
    text-decoration: none;
}

.davari-test-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* --- استایل فرم لید --- */
.davari-form-group {
    margin-bottom: 15px;
    text-align: right;
}

.davari-form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    text-align: right;
    box-sizing: border-box;
}

.davari-input-hint {
    font-size: 14px;
    color: #e74c3c;
    margin-bottom: 15px;
    display: block;
    font-weight: bold;
    text-align: center;
}

/* --- گرافیک گیج سرعت --- */
.davari-gauge-container {
    width: 200px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.davari-gauge {
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.davari-gauge-fill {
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: #d4af37;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: bottom center;
    transform: rotate(-180deg);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.davari-gauge-cover {
    width: 160px;
    height: 80px;
    background: #fff;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

/* --- وضعیت و محتوای داینامیک --- */
.davari-status-badge {
    display: inline-block;
    padding: 6px 25px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 25px;
}

.status-red {
    background: #e74c3c;
}

.status-orange {
    background: #e67e22;
}

.status-yellow {
    background: #f1c40f;
    color: #333;
}

.status-green {
    background: #2ecc71;
}

.davari-dynamic-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #ccc;
    text-align: right;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* --- تایمر و دکمه های نهایی --- */
.davari-timer {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
    margin: 15px 0;
    display: inline-block;
    direction: ltr;
}

.davari-change-number-wrapper {
    margin-top: 20px;
    display: none;
}

.davari-change-number-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: bold;
}

.davari-pdf-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

@media(min-width: 480px) {
    .davari-pdf-actions {
        flex-direction: row;
        justify-content: center;
    }
}