.input-wrapper {
    position: relative;
}

/* آیکون تقویم شمسی */
.persian-date-icon {
    position: absolute;
    left: 40px; /* فاصله از چپ (چون دکمه میلادی سمت راسته) */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.persian-date-icon:hover {
    color: #007bff;
}

/* تنظیم فاصله input برای جا دادن هر دو آیکون */
#birthDateInput {
    padding-left: 80px; /* فضای کافی برای دو آیکون */
}

/* RTL support */
[dir="rtl"] .persian-date-icon {
    right: 40px;
    left: auto;
}

[dir="rtl"] #birthDateInput {
    padding-right: 80px;
    padding-left: 12px;
}