/**
 * Fichier : assets/css/podcapture-live.css
 * Habillage du tableau [PodCapture] en mode LIVE (16:9, visuel coloré, podium)
 * Version : 1.1 — 2025-07-13 23:50 (Europe/Brussels)
 * Auteur : Christophe La Taupe GPT
 */

.podium-capture-wrapper {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  padding: 2rem;
  box-sizing: border-box;
  background: #f2f6fa;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

#form-title-fixe {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #3b5998;
  margin-bottom: 1rem;
}

.podcapture-header.live h2 {
  font-size: 1.4rem;
  text-align: center;
  color: #222;
  margin-bottom: 1rem;
}

#snapshot-time {
  font-weight: bold;
  color: #0077cc;
}

#refresh-timer {
  font-weight: bold;
  background: #ffcc00;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

.podium-capture-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.podium-capture-table thead th {
  background: #222;
  color: #fff;
  padding: 0.75rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.podium-capture-table tbody td {
  padding: 0.6rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

/* Podium style */
.podium-capture-table tbody tr.first-place {
  background: linear-gradient(to right, #ffd700, #fff5b0);
  font-weight: bold;
  color: #000;
}

.podium-capture-table tbody tr.second-place {
  background: linear-gradient(to right, #c0c0c0, #e0e0e0);
  font-weight: bold;
  color: #000;
}

.podium-capture-table tbody tr.third-place {
  background: linear-gradient(to right, #cd7f32, #f5d1a3);
  font-weight: bold;
  color: #000;
}

#sound-toggle {
  margin: 1rem auto 0;
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}