body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f9f9f9;
    color: #333;
}

/* Notification container styling */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ffeb3b;
  color: #000;
  border: 1px solid #fbc02d;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 9999;
}

.information {
  position: fixed;
  top: 20px;
  left: 0px;
  background-color: #ffeb3b;
  color: #000;
  border: 1px solid #fbc02d;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  z-index: 9999;
}

/* Hide notification when not active */
.hidden {
  display: none;
}

/* Dismiss button styling */
#dismiss-button {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

#dismiss-button:hover {
  background-color: #b71c1c;
}

#box{
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.main{
  height: 70%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid blue;
  border-radius: 5%;
}

.tabs {
  width: 50%;
  height: 10%;
  display: grid;
  row-gap: 50px;
  grid-template-columns: auto auto auto auto;
}

.set1{
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  max-height: 200px;
}

.btns{
  display: flex;
  gap: 10px;
}

#tabSwitch2{
  display: flex;
  flex-direction: row;
  gap: 50px;
  background: #000;
  color: aliceblue;
  overflow: hidden;
}

.scroll1{
  padding: 5px;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  max-height: 200px;
}

.scroll1::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.scroll1 :hover{
  color: blueviolet;
}

.scroll-headers {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  font-weight: bold;
  gap: 10px;
}