@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap");
main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

* {
  margin: 0;
}

body {
  font-family: "Courier Prime", monospace !important;
  background-color: #2F2F2F;
  color: #F8F5F5;
}

p {
  width: 800px;
  text-align: center;
  max-width: 100%;
  margin-bottom: 10px;
  word-wrap: break-word;
}

a {
  color: #D76524;
}

h1 {
  color: #D76524;
  margin: 17px;
}

h2 {
  color: #D76524;
  margin: 10px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-container {
  max-width: 400px;
  margin: 10px;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 10px;
}
.form-container h2 {
  color: #D76524;
  margin-bottom: 20px;
}
.form-container p {
  margin: 10px;
}
.form-container .input-group {
  margin-bottom: 15px;
  text-align: left;
}
.form-container .input-group label {
  font-size: 14px;
  color: #F8F5F5;
  display: block;
  margin-bottom: 5px;
}
.form-container .input-group input {
  width: 375px;
  padding: 12px;
  border: 1px solid #2F2F2F;
  border-radius: 5px;
  font-size: 16px;
  background-color: white;
  transition: all 0.3s ease;
}

.form-container select {
  height: 30px;
  width: 30px;
  border-radius: 5px;
}

.table-container {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  overflow-x: auto;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table-container table thead {
  background-color: #D76524;
  color: #D76524;
}
.table-container table thead th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
  color: #D76524;
}
.table-container table tbody tr {
  border-bottom: 1px solid #2F2F2F;
  transition: background-color 0.3s ease-in-out;
}
.table-container table tbody tr:hover {
  background-color: #2F2F2F;
}
.table-container table tbody tr td {
  padding: 15px;
  color: #F8F5F5;
  text-align: left;
}
.table-container table tbody tr td:last-child {
  text-align: center;
}

.graph-container {
  height: 400px;
  width: 400px;
  margin: 40px;
}

#chartTotal {
  width: 400px !important;
  height: 400px !important;
}

#chartDates {
  width: 400px !important;
  height: 400px !important;
}

#chartHeures {
  width: 400px !important;
  height: 400px !important;
}

.stat-graph {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.heure-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.heure-buttons input {
  display: none;
}

.heure-bouton {
  padding: 10px 20px;
  background-color: #D76524;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
}

.heure-buttons input:checked + .heure-bouton {
  background-color: white;
  color: #D76524;
  font-weight: bold;
}

header nav {
  display: flex;
  align-items: center;
  height: 10vh;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #0f0f0f;
  position: relative;
}

header nav img {
  height: 80px;
  width: 80px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.link_group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 450px;
}

header nav button {
  background-color: transparent;
  border: 2px solid #D76524;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

header nav button a {
  font-size: 16px;
  color: #D76524;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

header nav a {
  font-size: 16px;
  color: #D76524;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

header nav a:hover {
  color: white;
}

header nav button:hover {
  background-color: #D76524;
}

header nav button:hover a {
  color: white;
}

header nav button:focus {
  outline: none;
}

.bouton {
  background-color: #D76524;
  color: #F8F5F5;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
.bouton:hover {
  background-color: rgb(171.3147410359, 80.4780876494, 28.6852589641);
}

@media (max-width: 1024px) {
  header nav {
    flex-direction: column;
    height: auto;
  }
  .link_group {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  header nav button {
    width: 100%;
    text-align: center;
  }
  .heure-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    height: auto;
    text-align: center;
  }
  .link_group {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  header nav img {
    height: 60px;
    width: 60px;
  }
  .heure-buttons {
    flex-direction: column;
    align-items: center;
  }
  .heure-bouton {
    width: 80%;
  }
  .table-container {
    width: 95%;
    padding: 10px;
  }
  table {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  header nav img {
    height: 50px;
    width: 50px;
  }
  .heure-bouton {
    width: 100%;
  }
  .graph-container {
    width: 100%;
    height: auto;
  }
  #chartTotal,
  #chartDates,
  #chartHeures {
    width: 100% !important;
    height: auto !important;
  }
}

/*# sourceMappingURL=style.css.map */
