@import url("https://api.fontshare.com/v2/css?f[]=chillax@400,500,600,700&display=swap");
body {
  padding: 0 2rem 2rem;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

p {
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0;
}

h6 {
  font-family: system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: -0.5%;
}

h5 {
  font-family: system-ui, sans-serif;
  font-size: clamp(1.563rem, 2vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.5%;
}

h4 {
  font-family: system-ui, sans-serif;
  font-size: clamp(1.953rem, 2vw, 2rem);
  line-height: 1.3;
  letter-spacing: -1%;
}

h3 {
  font-family: system-ui, sans-serif;
  font-size: clamp(2.441rem, 2vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -1.5%;
}

h2 {
  font-family: system-ui, sans-serif;
  font-size: clamp(3.05rem, 2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -1.5%;
}

h1 {
  font-family: system-ui, sans-serif;
  font-size: clamp(3.815rem, 2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -2%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

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

input {
  width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  text-decoration: none;
  background-color: #648374;
  color: #E3E5D8;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s background-color ease-in-out;
}
nav a:hover {
  background-color: black;
}

button {
  background-color: #AFC0B6;
  border: none;
  border-radius: 50px;
  color: #365244;
  padding: 10px 20px;
  transition: 0.3s ease-in-out;
}
button:hover {
  background-color: rgb(77.9220779221, 102.0779220779, 90.3896103896);
  color: #E3E5D8;
}

select {
  background-color: #AFC0B6;
  color: #365244;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
}
select:focus-visible {
  border: none;
  outline: none;
}
select :active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

input#datePicker {
  max-width: 200px;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border: none;
  background: #f7f7ff;
}

button.remove-date-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0 5px;
}

button#savePdfBtn {
  margin-top: 15px;
}

nav {
  display: flex;
  flex-wrap: wrap;
}
nav a {
  margin: 10px 5px;
}

#overview h1, #completedOrders h1 {
  width: 40%;
  max-width: 500px;
}