/**
 * استایل‌های تقویم ساده شمسی
 * (این فایل برای رفع مشکل نمایش تقویم اضافه شده است)
 */

.spdp-container {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 10px;
    direction: rtl;
    font-family: inherit;
    z-index: 99999;
}

.spdp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.spdp-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.spdp-prev,
.spdp-next {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #555;
}

.spdp-prev:hover,
.spdp-next:hover {
    background: #f0f0f0;
}

.spdp-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 5px;
}

.spdp-day-name {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    padding: 5px 0;
}

.spdp-days-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 2px;
}

.spdp-day {
    font-size: 14px;
    padding: 8px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.spdp-day:not(.spdp-disabled):not(.spdp-empty):hover {
    background: #f0f0f0;
}

.spdp-day.spdp-today {
    background-color: var(--gm-primary, #10b981);
    color: white;
    font-weight: bold;
}

.spdp-day.spdp-disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.spdp-day.spdp-empty {
    cursor: default;
}