/* === persian-datepicker.css === */
#custom-persian-datepicker {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    padding: 12px;
    display: none;
    z-index: 9999;
    width: 280px;
}

#custom-persian-datepicker .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

#custom-persian-datepicker .header button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}
#custom-persian-datepicker .header button:hover { background: #005f8d; }

#custom-persian-datepicker select {
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    font-size: 13px;
}

#custom-persian-datepicker table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin-top: 6px;
}

#custom-persian-datepicker th {
    padding: 6px 0;
    font-weight: bold;
    color: #555;
}

#custom-persian-datepicker td {
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

#custom-persian-datepicker td:hover {
    background: #0073aa;
    color: #fff;
}

#custom-persian-datepicker td.today {
    background: #ff6b6b;
    color: #fff;
    font-weight: bold;
}

#custom-persian-datepicker .footer {
    margin-top: 8px;
    text-align: center;
}

#custom-persian-datepicker .footer button {
    background: #00a65a;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

#custom-persian-datepicker .footer button:hover { background: #007d44; }
