h1,
h2,
h3,
h4 {
  line-height: 40px;
  margin: 10px;
}

body {
  background: #f1f1f1;
  font-family: "Roboto Slab";
  margin: 0;
  line-height: 1.3;
  color: #2f2b32;
  display: flex;
  flex-direction: column;
  height: 100svh;
  font-weight: 500;
  word-spacing: 1px;
}
.container {
  flex-grow: 1; /* Allow the container to fill the available space */
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 650px;
  margin: 0px auto; /* Maintains the top and bottom margin */
  padding: 10px;
  overflow: hidden; /* Prevents content from overflowing */
}
.content {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows the content to fill the space */
  justify-content: space-between; /* Distributes space between children */
  box-sizing: border-box;
  padding: 0px;
}
#data {
  height: calc(100svh - 290px);
  margin-bottom: 80px; /* Adds space above and below */
  margin-top: 10px;
  width: 100%;
  flex-grow: 1; /* Allows the content to fill the space */
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.logo {
  display: flex;
  flex-direction: column;
  width: 90px;
  height: 100px;
  background:  #2f2b32;
  border: 2px solid #2f2b32;

  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 10px;
}
.cabinet {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
  border: 2px solid #2f2b32;
  margin: 5px;
  background:  #f1f1f1;

}

.cabinet:nth-child(2) {
  margin-top: 0px
}


.square {
  height: 100%;
  border: 5px solid #2f2b32;
  border-radius: 2.5px;
}

.line {
  border-top: 5px solid #2f2b32;
  border-radius: 5px;
}
.button-container {
  display: flex;
  justify-content: center; /* Centers the buttons horizontally */
  gap: 10px; /* Adjusts the space between buttons */
}

/* Styling the scrollbar thumb (the part you drag) */

@media only screen and (max-width: 620px) {
  #data {
    height: calc(100svh - 240px);
    border: 0px solid #f1f1f1;
  }
}

.custom-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #f1f1f1;
  color: #2f2b32;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
  width: 120px; /* Adjust as needed */
  border: 2px solid #2f2b32;
}

.custom-button:hover {
  background: #f1f1f1; /* Slightly lighter shade for hover */
  box-shadow: 5px 5px 0px #2f2b32;
}

.custom-button:active {
  box-shadow: 3px 3px 0px #2f2b32;
}
.navbar {
  display: flex;
  background: #f1f1f1;
}

.navbar:hover a {
  color: #a260f8; /* Change color on hover */
}

.navbar h1 {
  margin: 0;
  font-size: 24px;
}

.navbar a {
  color: #2f2b32;
  text-decoration: none;
}

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