/* Gym Credits - Frontend */
.gc-dashboard { max-width: 960px; margin: 0 auto; }
.gc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
.gc-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gc-card-balance { background: linear-gradient(135deg,#1f6feb,#316dca); color: #fff; }
.gc-card-balance.gc-low { background: linear-gradient(135deg,#d04646,#b03030); }
.gc-card-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; opacity: .85; margin-bottom: 8px; }
.gc-card-value { display: block; font-size: 36px; font-weight: 700; line-height: 1; }
.gc-card-value-sm { font-size: 18px; }
.gc-low-note { margin: 8px 0 0; font-size: 13px; opacity: .9; }

.gc-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.gc-table th, .gc-table td { padding: 10px 12px; border-bottom: 1px solid #eee; text-align: left; vertical-align: top; }
.gc-table th { background: #fafafa; font-weight: 600; }
.gc-table .gc-pos { color: #2e7d32; font-weight: 600; }
.gc-table .gc-neg { color: #c62828; font-weight: 600; }

.gc-front-notice { padding: 16px; border: 1px solid #ddd; background: #fafafa; border-radius: 6px; }
.gc-empty { color: #777; font-style: italic; }
.gc-balance-inline { display: inline-block; padding: 2px 8px; border-radius: 4px; background: #1f6feb; color: #fff; font-weight: 600; }

/* Mi Perfil */
.gc-profile { max-width: 1000px; margin: 0 auto; }
.gc-profile-header { margin-bottom: 8px; }
.gc-profile-header h2 { margin: 0 0 4px; font-size: 26px; }
.gc-profile-sub { margin: 0 0 8px; color: #666; }
.gc-section { margin: 32px 0; }
.gc-section h3 { margin: 0 0 10px; font-size: 18px; color: #222; border-bottom: 1px solid #eee; padding-bottom: 6px; }

.gc-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #eef;
    color: #333;
}
.gc-pill-ok   { background: #d6f5dd; color: #1b6b2c; }
.gc-pill-bad  { background: #fbd9d9; color: #9b2727; }
.gc-pill-warn { background: #fff3cd; color: #856404; }
.gc-pill-info { background: #d6e8ff; color: #1f478d; }
