/* استایل‌های پایه افزونه */
.fcs-dashboard { font-family: Tahoma, sans-serif; direction: rtl; padding: 15px; }
.fcs-form-group { margin-bottom: 15px; }
.fcs-form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.fcs-form-group input, .fcs-form-group select, .fcs-form-group textarea { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.fcs-btn-submit { background: #0284c7; color: #fff; border: 0; padding: 10px 20px; border-radius: 4px; cursor: pointer; }
.fcs-btn-submit:hover { background: #0369a1; }
.fcs-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.fcs-table th, .fcs-table td { border: 1px solid #ddd; padding: 10px; text-align: right; }
.fcs-table th { background: #f4f4f5; }
.fcs-notice { padding: 10px; margin: 10px 0; border-radius: 4px; }
.fcs-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.fcs-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
/* FCS Coach Dashboard CSS styling */
:root {
    --fcs-primary: #00adb5; /* فیروزه‌ای اصلی */
    --fcs-primary-hover: #008f96;
    --fcs-bg-light: #f4f6f9; /* طوسی بسیار روشن */
    --fcs-card-bg: #ffffff; /* سفید */
    --fcs-text-color: #393e46; /* طوسی تیره */
    --fcs-border-color: #e3e8ec;
    --fcs-accent: #222831; /* طوسی ذغالی */
    --fcs-success: #2ecc71;
    --fcs-danger: #e74c3c;
    --fcs-warning: #f1c40f;
}

.fcs-dashboard-wrapper {
    font-family: inherit;
    color: var(--fcs-text-color);
    background-color: var(--fcs-bg-light);
    padding: 20px;
    border-radius: 12px;
    direction: rtl;
    box-sizing: border-box;
}

/* Header design */
.fcs-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--fcs-card-bg);
    padding: 20px 25px;
    border-radius: 10px;
    border-right: 5px solid var(--fcs-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.fcs-header-info h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: var(--fcs-accent);
}
.fcs-header-info p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* General button design */
.fcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.fcs-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.fcs-btn-primary { background-color: var(--fcs-primary); color: #fff !important; }
.fcs-btn-primary:hover { background-color: var(--fcs-primary-hover); }

.fcs-btn-success { background-color: var(--fcs-success); color: #fff !important; }
.fcs-btn-success:hover { filter: brightness(0.9); }

.fcs-btn-danger { background-color: var(--fcs-danger); color: #fff !important; }
.fcs-btn-danger:hover { filter: brightness(0.9); }

.fcs-btn-accent { background-color: var(--fcs-accent); color: #fff !important; }
.fcs-btn-accent:hover { background-color: #1a1e25; }

/* Stats widgets */
.fcs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.fcs-stat-card {
    background: var(--fcs-card-bg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--fcs-border-color);
}

.fcs-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(0, 173, 181, 0.1);
    color: var(--fcs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcs-stat-icon span { font-size: 24px; width: 24px; height: 24px;}
.fcs-stat-icon.warning { background: rgba(241, 196, 15, 0.1); color: var(--fcs-warning); }

.fcs-stat-details h3 { margin: 0; font-size: 24px; font-weight: bold; line-height: 1; color: var(--fcs-accent); }
.fcs-stat-details p { margin: 5px 0 0 0; font-size: 13px; color: #888; }

/* Layout Grid */
.fcs-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

@media (max-width: 992px) {
    .fcs-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Card Design */
.fcs-card {
    background: var(--fcs-card-bg);
    border-radius: 10px;
    border: 1px solid var(--fcs-border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 25px;
    overflow: hidden;
}

.fcs-card-header {
    background: #fafbfc;
    padding: 15px 20px;
    border-bottom: 1px solid var(--fcs-border-color);
}

.fcs-card-title {
    margin: 0;
    font-size: 15px;
    color: var(--fcs-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}
.fcs-card-title span { color: var(--fcs-primary); }

.fcs-card-body {
    padding: 20px;
}

.fcs-card-subtitle {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

/* Forms */
.fcs-form-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fcs-form-group {
    flex: 1;
    min-width: 200px;
}

.fcs-form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--fcs-border-color);
    border-radius: 6px;
    outline: none;
    font-size: 13px;
    transition: border-color 0.3s;
}

.fcs-form-group input:focus {
    border-color: var(--fcs-primary);
}

/* Responsive Table */
.fcs-table-responsive {
    overflow-x: auto;
}

.fcs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.fcs-table th, .fcs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--fcs-border-color);
    font-size: 13px;
}

.fcs-table th {
    background: #fafbfc;
    font-weight: bold;
    color: var(--fcs-accent);
}

.fcs-user-avatar-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fcs-user-avatar-meta span {
    color: #999;
}

/* Request list */
.fcs-request-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcs-request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--fcs-border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fafbfc;
    gap: 10px;
    flex-wrap: wrap;
}

.fcs-request-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.fcs-request-actions {
    display: flex;
    gap: 5px;
}

/* Alert Notifications */
.fcs-alert {
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 13px;
}
.fcs-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.fcs-alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Empty state design */
.fcs-empty-state {
    text-align: center;
    padding: 30px 10px;
    color: #999;
}
.fcs-empty-state span {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    display: inline-block;
}
