.mic-datepicker-wrapper { position: relative; display: inline-block; }
.mic-datepicker-container { display: none; position: absolute; top: 100%; right: 0; background: #fff; border: 1px solid #ccc; z-index: 1000; padding: 10px; font-family: sans-serif; }
.mic-datepicker-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mic-datepicker-header select, .mic-datepicker-header button { padding: 5px; }
.mic-datepicker-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.mic-datepicker-day-name { font-weight: bold; }
.mic-datepicker-day { cursor: pointer; padding: 8px 5px; border-radius: 4px; }
.mic-datepicker-day:hover { background: #f0f0f0; }
.mic-datepicker-day.today { background: #ffc; }
.mic-datepicker-day.selected { background: #0073aa; color: #fff; }
.mic-datepicker-day.other-month { color: #aaa; }


/* --- Custom Datepicker Styles --- */
.mic-datepicker-container {
    position: absolute;
    z-index: 9999;
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    font-family: inherit; /* از فونت فرم ارث‌بری می‌کند */
    width: 280px;
    direction: rtl;
    display: none; /* در ابتدا مخفی است */
}
.mic-dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.mic-dp-header button {
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #333; /* رنگ متن دکمه */
}
.mic-dp-header button.mic-dp-toggle {
    background-color: #0073aa;
    color: white;
}
.mic-dp-header .mic-dp-month {
    font-weight: bold;
}
.mic-dp-weekdays, .mic-dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
.mic-dp-weekdays div {
    font-weight: bold;
    padding: 5px 0;
    font-size: 12px;
}
.mic-dp-days div {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1; /* برای جلوگیری از کشیدگی عمودی */
}
.mic-dp-days div:hover {
    background: #f0f0f0;
}