@import url('https://fonts.googleapis.com/css2?family=Honk&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');

@import url('light.css');

body {
  background-color: #212529; /* Dark background */
  font-family: "VT323";
  color: #00c939;
  margin-left: 5%;
  margin-right: 5%;
}

code {
  font-family: "Kode Mono";
  font-size: 0.6em;
  color: #67a87a;
  background-color: #1f1f1f;
  border: 0.5px solid #000000;
  border-radius: 2px;
}

hr {
  color: #45ab3c;
}

a {
  color: #7c78ff;
}

.btn-dark {
  font-family: 'VT323', monospace; /* font family */
  font-size: 14px; /* font size */
  background-color: #1a1a1a; /* dark background color */
  color: #ffffff; /* white text color */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

.file-info {
  font-size: 12px; /* smaller font size for file info */
  color: #cccccc; /* light gray color for file info */
  margin-right: 5px;
}

.file-size {
  margin-right: 2px;
}

.file-ext {
  font-style: italic;
}

.toc {
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  width: 250px;
}

.toc tr {
  border-bottom: 1px solid #333333;
}

.toc tr:last-child {
  border-bottom: none;
}

.toc th {
  text-align: left;
  padding: 10px;
}

.toc td {
  padding: 10px;
}

.toc a {
  color: #10bf00;
  text-decoration: none;
}

.toc a:hover {
  color: #ffffff;
}

.title {
  font-family: "Honk";
  color: #00c939 !important;
}

.button {
  padding: 10px 40px;
  font-size: 18px;
  background-color: #333;
  color: #fff;
  text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0;
  z-index: 1;
  user-select: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: unset;
  padding: .8rem 1.5rem;
  text-decoration: none;
  font-weight: 900;
  transition: all 0.7s cubic-bezier(0,.8,.26,.99);
}

.button:before {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  transition: .7s cubic-bezier(0,.8,.26,.99);
  z-index: -1;
  background-color: #333!important;
  box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset, -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.button:after {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
  transition: .7s cubic-bezier(0,.8,.26,.99);
}

.button:hover:before {
  box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset, -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.button:hover:after {
  box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.button:active {
  transform: translateY(4px);
}

.button:active:after {
  box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* Mobile styles (screen width < 600px) */
@media (max-width: 599px) {
  .navbar {
    transform: scale(0.4);
    left: 36% !important;
  }
}

#messageList {
  background-color: #4f4f4f; /* Dark gray background */
  padding: 20px;
  border: 1px solid #00c939;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  color: #00c939; /* White text color */
}

#messageList p {
  margin-bottom: -1px;
  font-family: "VT323";
}

#message-input {
  background-color: #8a8a8a; /* Dark gray background */
  border: 1px solid #00c939;
  padding: 10px;
  border-radius: 10px;
  width: 75%;
  font-family: "VT323";
  color: #00c939; /* White text color */
}

#send-button {
  background-color: #00b533; /* Blue button */
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "VT323";
  color: #fff; /* White text color */
  cursor: pointer;
}

#send-button:hover {
  background-color: #007d23; /* Darker blue on hover */
}

#private-send-button {
  background-color: #00b533; /* Blue button */
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "VT323";
  color: #fff; /* White text color */
  cursor: pointer;
}

#private-messageList p {
  margin-bottom: 10px;
  font-family: "VT323";
}

#private-messageList {
  background-color: #4f4f4f; /* Dark gray background */
  padding: 20px;
  border: 1px solid #00c939;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  color: #00c939; /* White text color */
}

.scroll-bar::-webkit-scrollbar {
    width: 7px;
  }

.scroll-bar::-webkit-scrollbar-track {
    background: #313131;
    border-radius: 25px;
  }
  
.scroll-bar::-webkit-scrollbar-thumb {
    background: #1cd941;
    border-radius: 25px;
    border:0px solid #41435f;
  }
                
/* Search Bar */
input[type="search"] {
  width: 80%;
  height: 40px;
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "VT323";
}
