/* تقویم فارسی — استایل پنجره انتخاب تاریخ */
.jalali-date { position: relative; }
.jalali-display {
    background: #fff url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat left 10px center;
    padding-left: 32px;
    cursor: pointer;
    direction: ltr;
    text-align: center;
}
.jdp-popup {
    position: absolute;
    z-index: 2000;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    padding: 10px;
    width: 264px;
    direction: rtl;
    font-family: inherit;
}
.jdp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.jdp-title { font-weight: 700; font-size: 14px; color: #212529; }
.jdp-nav {
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 6px;
    width: 28px; height: 28px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #495057;
}
.jdp-nav:hover { background: #e9ecef; }
.jdp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.jdp-weekday {
    text-align: center;
    font-size: 11px;
    color: #6c757d;
    padding: 3px 0;
    font-weight: 700;
}
.jdp-day {
    border: 0;
    background: transparent;
    border-radius: 6px;
    padding: 5px 0;
    font-size: 13px;
    cursor: pointer;
    color: #212529;
}
.jdp-day:hover { background: #eef5ff; }
.jdp-today { outline: 1px solid #0d6efd; outline-offset: -1px; }
.jdp-selected { background: #0d6efd !important; color: #fff; font-weight: 700; }
.jdp-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    border-top: 1px solid #f1f3f5;
    padding-top: 8px;
}
.jdp-action {
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    color: #495057;
}
.jdp-action:hover { background: #e9ecef; }
.jdp-clear { color: #dc3545; border-color: #f5c2c7; background: #fff5f5; }
