table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
}
.inout_style {
    border: 2px solid black;
    border-radius: 4px;
    font-size: 13px;
    padding: 6.5px 16px;
}
nav {
  width: 350px;
  background-color: #292a2d;
  padding: 20px;
  position: fixed;
  top: 0;
  box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
  left: 0;
  bottom: 0;
  overflow: auto;
}
nav h2 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  /* max-height: calc(100% - 60px);
  overflow-y: auto;
  display :grid; */
}
nav li {
  margin: 0 0 10px 0;
}
nav a {
  display: block;
  padding: 10px;
  background-color: #3d3e43;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
}
nav a:hover {
  background-color: #fca311;
  color: #292a2d;
}
nav a.active {
  background-color: #fca311;
  color: #292a2d;
}
nav::-webkit-scrollbar {
  width: 5px;
}

nav::-webkit-scrollbar-track {
  background-color: #292a2d;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

nav::-webkit-scrollbar-thumb {
  background-color: #fca311;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

/* Firefox */
nav scrollbar {
  width: 8px;
}

nav scrollbar-track {
  background-color: #292a2d;
}

nav scrollbar-thumb {
  background-color: #fca311;
}
/* CSS for the content */
#content {
  margin-left: 220px;
  padding: 20px;
}
body {
  background-color: #f0f0f0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.next{
  display: flex;
  align-items: center;
  justify-content: center;
}
.box1{
  background-color: #fff;
  padding: 20px;
}
.box {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}