/* استایل‌های سیستم مدیریت باشگاه */
.gym-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.gym-form input, .gym-form textarea, .gym-form select {
    width: 100%;
    margin-bottom: 15px;
}

.payment-info {
    text-align: center;
}

.days-remaining {
    font-size: 18px;
    font-weight: bold;
    color: #0073aa;
}

.send-reminder {
    margin-top: 10px;
}

/* استایل‌های ویجت‌ها */
.gym-dashboard-widgets {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.gym-widget {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    flex: 1;
}

/* استایل‌های جدول */
.sms-log-table {
    width: 100%;
    border-collapse: collapse;
}

.sms-log-table th, .sms-log-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: right;
}

.sms-log-table th {
    background-color: #f2f2f2;
}

/* استایل‌های پاپ آپ تاریخ شمسی */
.persian-date-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    width: 400px;
    max-width: 90%;
}

.persian-date-header {
    background: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.persian-date-header h3 {
    margin: 0;
    font-size: 16px;
}

.persian-date-body {
    padding: 20px;
}

.date-field {
    margin-bottom: 15px;
}

.date-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.date-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.persian-date-footer {
    padding: 15px;
    border-top: 1px solid #dee2e6;
    text-align: left;
}

.persian-date-footer .button {
    margin-left: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

/* استایل‌های ستون عکس در لیست */
.column-featured_image {
    width: 60px;
    text-align: center;
}

.column-featured_image img {
    border-radius: 3px;
    border: 1px solid #ddd;
}