.hours-table {
  margin: 15px 0;
  width: 100%;
}

.hours-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hours-table th, 
.hours-table td {
  padding: 12px 15px;
  text-align: center;
}

.hours-table th {
  background-color: #e67e22;
  color: white;
  font-weight: bold;
}

.hours-table tr:nth-child(even) {
  background-color: #f8f5f1;
}

.hours-table td:first-child {
  font-weight: bold;
  text-align: left;
}

.hours-table .closed {
  background-color: #f8d7da;
  color: #721c24;
  font-style: italic;
}

/* Design responsive pour petits écrans */
@media (max-width: 576px) {
  .hours-table th, 
  .hours-table td {
    padding: 8px 10px;
    font-size: 14px;
  }
}