nav button{
    background :black;
}

.dashboard-section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1200px;
  margin: 2rem auto;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Titres */
.admin-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
  text-align: center;
}

.titreDashboard{
  font-size: 1.8rem;
  font-variant: small-caps;
  margin-bottom: 1rem;
  /*border-bottom: 2px solid #000;*/
  padding-bottom: 0.5rem;
  text-align: center;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

th, td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #000;
  color: #fff;
  font-weight: normal;
}

tr:hover {
  background-color: #f9f9f9;
}

/* Boutons */
button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  margin-right: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #333;
}

/* Popup */
/*.admin-section .popup {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.6);*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  z-index: 999;*/
/*}*/

/*.admin-section .popup-content.large {*/
/*  background-color: #fff;*/
/*  padding: 2rem;*/
/*  border-radius: 12px;*/
/*  width: 600px;*/
/*  max-height: 90vh;*/
/*  overflow-y: auto;*/
/*  position: relative;*/
/*}*/

/* Close button */
/*.admin-section .close-btn {*/
/*  position: absolute;*/
/*  top: 1rem;*/
/*  right: 1.2rem;*/
/*  font-size: 1.5rem;*/
/*  cursor: pointer;*/
/*  color: #000;*/
/*}*/

/* Form inside popup */
/*.admin-section .popup-content input,*/
/*.admin-section .popup-content textarea,*/
/*.admin-section .popup-content select {*/
/*  display: block;*/
/*  width: 100%;*/
/*  margin-bottom: 1rem;*/
/*  padding: 0.8rem;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 6px;*/
/*  font-size: 1rem;*/
/*}*/

/*.admin-section .popup-content button[type="submit"] {*/
/*  width: 100%;*/
/*  background-color: #000;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 0.8rem;*/
/*  font-size: 1rem;*/
/*  border-radius: 6px;*/
/*  cursor: pointer;*/
/*}*/

/*.admin-section .popup-content button[type="submit"]:hover {*/
/*  background-color: #222;*/
/*}*/