/* Grille pour les activités */
.heures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.heures-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.heures-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--accent);
}

.heures-card p {
  margin: 0.3rem 0;
}

/* Bouton small spécifique à la page heures */
.heures-card .btn.small {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
}

/* Styles pour le résumé des heures */
.heures-summary {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.summary-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.summary-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}

.summary-table th, 
.summary-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.summary-table th {
  background-color: var(--accent);
  color: white;
  font-weight: 600;
}

.summary-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.03);
}

.summary-table .total-row {
  background-color: var(--bg-alt);
  font-size: 1.1rem;
}
