body {
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  margin: 0;
  padding-top: 60px;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60%;
}

.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  padding-right: 40px;
}

h1 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
}

textarea {
  width: 100%;
  height: 90%;
  padding: 10px;
  font-size: 16px;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
  color: #ffffff;
  outline: none;
  resize: none;
}

textarea:focus {
  border-color: #6200ee;
  box-shadow: 0 0 0 2px #6200ee33;
}

.button-container {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  background-color: #6200ee;
  border: none;
  color: #ffffff;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #8f39ff;
}

button:active {
  background-color: #3700b3;
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #6200ee33;
}

/* Responsive media query */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ... (previous CSS code) ... */

nav {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: left;
  align-items: left;
  margin-bottom: 20px;
}

/* ... (previous CSS code) ... */

nav {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: left;
  align-items: left;
  margin-bottom: 20px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px; /* Padding for a larger button area */
  margin-right: 10px; /* Add right margin to create space between buttons */
  border: 2px solid #ffffff; /* White border */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

nav a:last-child {
  margin-right: 0; /* Remove right margin for the last button */
}

nav a:hover {
  text-decoration: none;
  background-color: #ffffff; /* Change background color on hover */
  color: #6200ee; /* Change text color on hover */
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

 .top-buttons {
    position: absolute;
    top: 1rem;
    display: flex;
  }

  .top-button-wrapper {
    margin: 0 0.5rem;
  }

        .top-button {
            color: #ffffff;
            background-color: #bb86fc;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            padding: 0.5rem;
            font-size: 1rem;
            text-decoration: none;
            display: block;
        }

  .top-button.selected {
    background-color: #3700b3;
  }

  .shortcut {
    font-size: 0.7rem;
    text-align: center;
    margin: 0;
  }


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}