/* Grill Vibe — client1 loyalty portal "Mes points" movements view.
 * Matches the portal look: near-monochrome white/black, orange accent only,
 * ZERO border-radius (the portal enforces this globally). */

.gvph-seg {
  display: flex;
  gap: 0;
  margin: 4px 0 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.gvph-seg-btn {
  flex: 1 1 0;
  padding: 11px 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .01em;
  transition: color .15s, background .15s;
}
.gvph-seg-btn.on {
  background: #111;
  color: #fff;
}

.gvph-panel { margin-top: 4px; }

.gvph-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
}
.gvph-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px;
  border-bottom: 1px solid #eee;
}
.gvph-main { min-width: 0; }
.gvph-label {
  font-size: 14.5px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}
.gvph-sub {
  font-size: 12.5px;
  color: #999;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gvph-amt {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.gvph-pos { color: #1a7f43; }
.gvph-neg { color: #c0392b; }

.gvph-empty {
  text-align: center;
  padding: 44px 16px;
  color: #999;
}
.gvph-empty p { margin: 0; font-size: 14.5px; font-weight: 600; color: #666; }
.gvph-empty-sub { margin-top: 8px !important; font-weight: 500 !important; font-size: 13px !important; color: #aaa !important; }

.gvph-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.gvph-pager button {
  padding: 9px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  font-family: inherit;
}
.gvph-pager button:disabled { opacity: .4; cursor: not-allowed; }
.gvph-pager span { font-size: 13.5px; font-weight: 700; color: #111; }

/* ---- dashboard "Derniers points" recap ---- */
.gvph-recent {
  margin-top: 18px;
  border: 1px solid #eee;
  background: #fff;
}
.gvph-recent-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #999;
  padding: 13px 15px 9px;
}
.gvph-recent-list { display: flex; flex-direction: column; }
.gvph-recent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  border-top: 1px solid #f2f2f2;
}
.gvph-recent-main { min-width: 0; }
.gvph-recent-label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.gvph-recent-sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gvph-recent-amt {
  flex: 0 0 auto;
  font-size: 14.5px;
  font-weight: 900;
  white-space: nowrap;
}
.gvph-recent-empty {
  padding: 16px 15px;
  font-size: 13px;
  color: #aaa;
}
