body {
  margin-left: 1em;
  margin-right: 1em;
  background: #1a1a1a !important;
  /* Dark background */
  font-family: 'Fira Code', monospace;
  color: #e0e0e0;
  /* Light text color */

}

.mr-10 {
  margin-right: 10px;
}

.ml-2em {
  margin-left: 2.4em;
}

.green {
  color: #9cdb6b;
  /* A lighter green */
}

.red {
  color: #f76c6c;
  /* A lighter red */
}

.white {
  color: white;
}

a {
  color: #8ab4f8;
  /* Light blue for links */
  text-decoration: none;
  /* Remove underline */
}

a:hover {
  color: gold;
  /* Lighter blue on hover */
  text-decoration: none;
  /* Underline on hover */
}

textarea {
  background-color: #2e2e2e;
  /* Dark background for textarea */
  color: #e0e0e0;
  /* Light text color */
  border: 1px solid #4a4a4a;
  /* Subtle border color */
  padding: 10px;
  font-family: Courier;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  /* Allow vertical resizing */
  caret-color: gold;

}

@keyframes NslideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

textarea:focus {
  border-color: #8ab4f8;
  /* Border color when focused */
  outline: none;
  /* Remove default focus outline */
}

.mb-10 {
  margin-bottom: 20px;
}

.textarea-button {
  margin-top: 20px;
  background-color: #3a3a3a;
  /* Dark background for button */
  color: #e0e0e0;
  /* Light text color */
  border: 1px solid #4a4a4a;
  /* Subtle border color */
  padding: 10px;
  font-family: Courier;
  width: 100%;
  /* Full width */
  box-sizing: border-box;
  cursor: pointer;
}

.textarea-button:hover {
  background-color: #5a5a5a;
  /* Slightly lighter background on hover */
}

.textarea-button:active {
  background-color: #2a2a2a;
  /* Slightly darker background when clicked */
}

.textarea-button:focus {
  outline: none;
  /* Remove default focus outline */
  border-color: #8ab4f8;
  /* Border color when focused */
}

.file-upload label {
  cursor: pointer;
  color: white;
  /* Light blue text color */
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 15px;
}

.file-upload label:hover {
  color: #a4cafe;
  /* Lighter blue on hover */
}

.file-upload:focus-within {
  border-color: #8ab4f8;
  /* Border color when focused */
  outline: none;
}

tbody tr:hover {
  background-color: black;

}

.tc {
  text-align: center;
}


.wrapper {
  display: flex;
  margin-top: 15px;
  margin-bottom: 20px;
}

.corner-right {
  position: absolute;
  right: 0;
  margin-right: 2.4em;
}

.tc {
  margin-left: 2.4em;
}

table {
  margin-top: -20px;
}

hr {
  border: 0.4px solid #3a3a3a;
  margin-bottom: 25px;
}

@keyframes slideUp {

  0%,
  50% {
    transform: translateY(100%);
    opacity: 0;
  }

  60%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.notification {
  bottom: 20px;
  background-color: white;
  z-index: 10;
  border-radius: 4px;
  color: black;
  transition: all .3s ease-out;
  width: fit-content;
  max-width: 600px;
  padding: 14px;
  font-weight: 800;
  position: fixed;
  animation: slideUp 0.5s;
}


.blur-table {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.hidden {
  display: none;
  opacity: 0;
}

input[type="text"] {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #555555;
  padding: 5px 10px;
}

input[type="submit"] {
  background-color: transparent;
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;

}