/* ── Frontend CSS — Espace club ─────────────────────────────────────────────── */
.bcs-space { font-family: inherit; }
.bcs-space-header h2 { margin-bottom: 24px; font-size: 22px; }

/* Stats ──────────────────────────────────────────────────────────────────────── */
.bcs-stats { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.bcs-stat-card {
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
}
.bcs-stat-pending { background: #fff3cd; border: 1px solid #ffc107; }
.bcs-stat-paid    { background: #d4edda; border: 1px solid #28a745; }
.bcs-stat-value   { font-size: 26px; font-weight: 700; line-height: 1.2; }
.bcs-stat-label   { font-size: 13px; color: #666; margin-top: 4px; }

/* Sections ───────────────────────────────────────────────────────────────────── */
.bcs-section { margin-bottom: 36px; }
.bcs-section h3 { font-size: 16px; border-bottom: 2px solid #e63946; padding-bottom: 6px; margin-bottom: 16px; }

/* Notices ────────────────────────────────────────────────────────────────────── */
.bcs-notice {
    padding: 10px 14px;
    border-radius: 5px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    font-size: 14px;
}
.bcs-notice-info    { background: #d1ecf1; border-color: #bee5eb; }
.bcs-notice-success { background: #d4edda; border-color: #c3e6cb; color: #155724; }
.bcs-notice-warning { background: #fff3cd; border-color: #ffc107; }
.bcs-notice-error   { background: #f8d7da; border-color: #f5c6cb; color: #721c24; }

/* Formulaire demande paiement ─────────────────────────────────────────────────── */
#bcs-payout-form select {
    display: block;
    margin: 8px 0;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
}
.bcs-btn-primary {
    background: #e63946 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    cursor: pointer;
    font-size: 14px !important;
    margin-top: 10px;
}
.bcs-btn-primary:hover { background: #c0392b !important; }
.bcs-btn-primary:disabled { background: #ccc !important; cursor: not-allowed; }

/* Tableau ────────────────────────────────────────────────────────────────────── */
.bcs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bcs-table th { background: #333; color: #fff; padding: 8px 12px; text-align: left; font-size: 13px; }
.bcs-table td { padding: 8px 12px; border-bottom: 1px solid #eee; }
.bcs-table tr:last-child td { border-bottom: none; }

/* Statuts ────────────────────────────────────────────────────────────────────── */
.bcs-status { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 12px; font-weight: 600; }
.bcs-status-pending   { background: #fff3cd; color: #856404; }
.bcs-status-approved  { background: #d1ecf1; color: #0c5460; }
.bcs-status-paid      { background: #d4edda; color: #155724; }
.bcs-status-cancelled, .bcs-status-rejected { background: #f8d7da; color: #721c24; }

/* Point de notification dans le menu ──────────────────────────────────────────── */
.bcs-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #e63946;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 4px;
}

.bcs-small { font-size: 12px; color: #666; }
.bcs-empty { color: #999; font-style: italic; }
