body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
  visibility: hidden;
}

.container {
  display: flex;
}

.sidebar {
  height: 100vh;
  width: 250px !important;
  background-color: #3C3744;
  padding-top: 60px;
  transition: transform 0.3s ease;
  z-index: 100;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px;
  color: #fff;
}

.sidebar ul li:hover {
  background-color: #555;
}

.content {
  flex: 1;
  padding: 20px;
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 0;
    overflow: hidden;
    transform: translateX(-250px);
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .content {
    margin-top: 60px;
  }
}

/* header */
.header .nav-logo,
.header .nav-item,
.header .nav-link {
  font-size: 1rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.header{
  border-bottom: 1px solid #FBFFF1;
  background-color: #F1F7EE;
  height: 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1.5rem;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link{
  font-size: 1.6rem;
  font-weight: 400;
  color: #475569;
}

.nav-link:hover{
  color: #482ff7;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: #482ff7;
}

@media only screen and (max-width: 768px) {
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 5rem;
      flex-direction: column;
      background-color: #F1F7EE;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      z-index: 999;
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-item {
      margin: 2.5rem 0;
      border-bottom: 2px solid rgb(211, 213, 223);
  }

  .hamburger {
      display: block;
      cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
}


/* Employee list */

#employee-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.employee-list {
  list-style-type: none;
  padding: 0;
}
.employee-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.employee-name {
  margin-right: 10px;
}

#delete-button {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}


/* Loader*/
.loader-container {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
}


svg {
  width: 3.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
 }
 
 circle {
  fill: none;
  stroke: hsl(214, 97%, 59%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
 }
 
 @keyframes rotate4 {
  100% {
   transform: rotate(360deg);
  }
 }
 
 @keyframes dash4 {
  0% {
   stroke-dasharray: 1, 200;
   stroke-dashoffset: 0;
  }
 
  50% {
   stroke-dasharray: 90, 200;
   stroke-dashoffset: -35px;
  }
 
  100% {
   stroke-dashoffset: -125px;
  }
 }
 

 /* subheader styles */
 .sub-header{
  border-bottom: 1px solid #E2E8F0;
  background-color: #3066be;
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-header-links {
  color: white;
  
}

button {
  background-color: #090C9B;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 2px;
  font-family: "Roboto", sans-serif;
}


/* form styles */
.form-container {
  display: flex;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  font-weight: bold;
}

input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}


/* reservation list styles */
#main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-list {
  list-style-type: none;
  padding: 0;
}
.reservation-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation-name {
  margin-right: 10px;
}