body {
  font-family: "Inter", sans-serif;
  background-color: #f2f2f7;
  /* Light gray background */
  color: #000000;
  /* Black text */
  overflow-x: hidden;
  /* Prevent horizontal scroll when menu is open */
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
  /* Lighter gray for track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ffd314;
  /* Yellow thumb */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e6bf00;
  /* Slightly darker yellow on hover */
}

/* Styles for the off-canvas menu */
.sidebar {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  /* Hidden by default */
}

.sidebar.open {
  transform: translateX(0);
  /* Visible when open */
}

/* Modal styles */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 100;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
