@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&display=swap');

html, body {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}
body {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
  margin: 0;
}
a {
  text-decoration: none;
  width: 100%;
}

.footer {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(200, 200, 200);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(10, 10, 10, 0.75);
}
.global_container {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    overflow: hidden;
}
.window_container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}
.medium_wide {
  padding: 50px;
  max-width: 1000px;
  max-height: 80% !important;
  max-height: calc(100% - 200px);
  overflow: auto;
  width: 95%;
}
.slightly_small_wide {
  padding: 50px;
  max-width: 800px;
}
.mid_wide_mid_tall {
  max-width: 650px;
  padding: 30px;
  max-height: 600px;
}
.just_padding {
  padding: 50px;
}
.no_border_radius {
  border-radius: 0 !important;
}
.container {
  transition: .4s ease transform;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 50px 1px rgba(0,0,0,0.5);
  color: rgb(200, 200, 200);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  overflow: auto;
  color: rgb(200, 200, 200);
}
/* Start Jagged Edge Code */
.write_container {
  position: relative;
  overflow: visible;
  background: white;
  border-radius: 0;
  background: rgba(255, 255, 255, 1);
  padding: 20px;
  margin: 20px;
  box-shadow: 0px 0px 50px 1px rgba(0,0,0,0.25);
  color: #000;
  width: 300px;
  font-family: "Noto Sans Mono", monospace;
}
.flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.label {
  color: rgb(180, 180, 180);
  margin-bottom: 5px;
}
.generic_input {
  background: rgba(10, 10, 10, 0.5);
  border: none;
  padding: 10px;
  color: rgb(180, 180, 180);
  outline: none;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 325px;
  display: block;
}
.generic_input:focus {
  outline: 2px solid rgb(180, 180, 180);
}
.required {
  color: #de4f1f; 
}
.display_textarea {
    width: 100%;
    max-width: 450px;
    height: 200px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    font-size: 14px;
    resize: none;
    background: rgba(10, 10, 10, 0.5);
    color: rgb(200, 200, 200);
    margin-bottom: 20px;
}
.display_textarea:focus {
  outline: 2px solid rgb(180, 180, 180);
}
.poem_display_msg {
  margin-bottom: 20px;
}
.center_grid_container {
  display: grid;
  place-items: center;
}
.medium_max_width_container {
  max-width: 500px;
}

.table_container table {
  border-collapse: collapse;
  width: 100%;
  color: #fff;
  font-family: 'Nunito', sans-serif; /* Added font family for better readability */
  margin: 20px 0; /* Added margin for spacing */
}
.table_container .issue {
  max-width: 350px;
}

.table_container table td, .table_container table th {
  padding: 15px;
  border: 2px solid rgba(10, 10, 10, 0.8); /* Added border for better separation */
}

.table_container table tr:nth-child(even) { 
  background-color: rgba(10, 10, 10, 0.9);
}
.table_container table tr:nth-child(odd) { 
  background-color: rgba(10, 10, 10, 0.4);
}
.comment button {
  margin-left: 5px;
  background: red;
  outline: none;
  border: none;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  border-radius: 5px;
  cursor: pointer;
}
.comment button:hover {
  margin-left: 5px;
  background: rgb(198, 0, 0);
  outline: none;
  border: none;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  border-radius: 5px;
  cursor: pointer;
}
.comment button:disabled {
  background: gray !important;
  cursor: default;
}
.table_container table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #1c3c93;
  color: white;
  border: 2px solid rgba(10, 10, 10, 0.8); /* Added border for better separation */
}
.table_container table td {
  word-wrap: break-word; /* Ensures long text wraps within the cell */
  white-space: pre-wrap; /* Preserves whitespace and line breaks */
}
.table_container {
  overflow-x: auto; /* Ensures table is scrollable horizontally on small screens */
}
/* Mobile styles */
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .table_container table, .table_container thead, .table_container tbody, .table_container th, .table_container td, .table_container tr {
    display: block;
    border: none;
  }
  .table_container thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table_container tr {
    margin: 0 0 1rem 0;
  }

  
  .table_container td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    text-align: left;
    padding-top: 35px !important;
  }
  .table_container td:before {
    position: absolute;
    top: 10px;
    left: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  .table_container td:nth-of-type(1):before { content: "ID"; }
  .table_container td:nth-of-type(2):before { content: "Name"; }
  .table_container td:nth-of-type(3):before { content: "Email"; }
  .table_container td:nth-of-type(4):before { content: "Subject"; }
  .table_container td:nth-of-type(5):before { content: "Issue"; }
  .table_container td:nth-of-type(6):before { content: "Action"; }
}

.textarea_poem {
    width: 100%;
    border: none;
    font-family: "Noto Sans Mono", monospace;
    outline: none;
    font-size: 18px;
    min-height: 150px;
    margin-top: 10px;
    resize: none;
    background: transparent;
    color: #000;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    word-wrap: break-word;
    overflow: hidden;
}
.textarea_poem_clone {
  position: absolute;
  width: 300px;
  overflow: hidden;
  height: 0;
  font-family: "Noto Sans Mono", monospace;
  font-size: 18px;
  word-wrap: break-word;
  opacity: 0;
}
[contenteditable=true]:empty:before{
  content: attr(placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
  color: rgb(120, 120, 120);
}
[contenteditable=true]:empty:before {
  content: attr(placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
  color: rgb(120, 120, 120);
}
.title_input_box {
  border: none;
  outline: none;
  font-family: "Noto Sans Mono", monospace;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 5px;
  background: transparent;
  width: 100%;
  text-align: center;
}
.text_center {
  text-align: center;
}
.section img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
}

.image-label {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.submit_poem {
    color: #000;
    background: none;
    border: none;
    outline: none;
    font-size: 35px;
    transition: .4s ease color;
    float: right;
    position: relative;
    overflow: hidden;
    font-family: "Noto Sans Symbols 2", sans-serif;
}
.submit_poem:hover {
    color: #d96c23;
}
.expandable:focus-within {
  transform: scale(1.025);
}
.not_expandable:focus-within {
  transform: scale(1);
}
.text_limit {
    left: 25px;
    bottom: 40px;
    color: rgb(89, 89, 89);
}
.context_info {
  color: rgb(230, 230, 230);
  margin-bottom: 20px;
}
.success_container {
  color: #fff;
  max-width: 475px;
  /* top right bottom left */
  padding: 30px 30px 7.5px 30px;
}
.large_orange_button {
  padding: 20px 30px 20px 30px;
  color: rgb(200, 200, 200);
  background: #c94923;
  border-radius: 10px;
  border: none;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  transition: .4s ease background;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 345px;
  overflow: hidden;
}
.fixed_width_padding {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 75px; 
  padding-right: 75px; 
  max-width: 350px; 
  display: block;
}
.green {
  background-color: #3e9041 !important;
}
.generic_button {
  padding: 20px;
  margin: 10px;
  color: rgb(200, 200, 200);
  border-radius: 10px;
  border: none;
  /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);*/
  font-family: "Noto Sans Symbols 2", sans-serif;
  background: #c94923;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: .4s ease background;
}
.symbols_font {
  font-family: "Noto Sans Symbols 2", sans-serif !important;
}
.image-container img {
  width: 75%;
}
@media (max-width:700px) { 
  .image-container img {
    width: 100%;
  }
} 
.generic_button:hover {
  background: rgba(201, 73, 35, 0.7);
}
.generic_button:disabled {
  background: gray !important;
  cursor: default;
}
.generic_input:disabled {
  background: gray !important;
  cursor: default;
}
button .ripple{
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple{
  to{
    transform: scale(2.5);
    opacity: 0;
  }
}
.agree_info {
  display: inline-block;
  color: rgb(210, 210, 210);
  margin-bottom: 20px;
}
.required_info_missing {
  color: #de4f1f;
  margin-top: 5px;
}
.important {
  z-index: 10;
}
h1 {
  text-align: center;
}
.close {
  color: #fff;
  cursor: pointer;
  font-family: "Noto Sans Symbols 2", sans-serif;
}
.close:hover {
  color: orange;
}
.warning {
  color: rgb(200, 200, 200);
  height: auto;
  /* top right bottom left */
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  max-width: 500px;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.confirmation {
  color: rgb(200, 200, 200);
  height: auto;
  /* top right bottom left */
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  max-width: 500px;
  display: none;
}
.input_box {
  color: rgb(200, 200, 200);
  height: auto;
  /* top right bottom left */
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  max-width: 500px;
  display: none;
}
.smaller_button {
  /* top right bottom left */
  padding: 10px 20px 10px 20px;
  margin: 5px;
}
.terms_and_conditions_button {
  color: orange;
  text-decoration: underline;
  cursor: pointer;
}
.dead_drop_background {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  z-index: 9;
  top: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.credit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.credit-item img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin-right: 20px;
  vertical-align: middle;
}

.credit-item .credit-details {
  flex: 1;
}

.credit-item strong {
  font-size: 18px;
}
.section_container {
  display: flex;
  justify-content: space-between; /* Ensure no space between buttons */
  padding: 0; /* Remove padding around the container */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Ensure buttons don't overflow the container */
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.option {
  color: white; /* Text color */
  padding: 15px 0; /* Padding inside each option, adjusted for vertical space */
  background-color: transparent; /* Background color of each option */
  border: none; /* Remove default button border */
  border-radius: 0; /* Remove rounded corners to blend with container */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
  flex-grow: 1; /* Allow buttons to grow and fill the container */
  text-align: center; /* Center the text inside the button */
  overflow: hidden;
  position: relative;
  font-family: 'Nunito', sans-serif;
}
.option_fake {
  color: white; /* Text color */
  padding: 15px 20px; /* Padding inside each option, adjusted for vertical space */
  background-color: #2051b3; /* Background color of each option */
  border: none; /* Remove default button border */
  border-radius: 0; /* Remove rounded corners to blend with container */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color ease 0.4s; /* Smooth transition for hover effect */
  text-align: center; /* Center the text inside the button */
  overflow: hidden;
  position: relative;
}
.option_fake:hover {
  background-color: #1b4394;
}

.option:hover {
  background-color: rgba(90, 90, 90, 0.75); /* Darker background on hover */
}
.doesnt_get_small_but_not_too_big {
  padding: 50px;
  max-width: 800px;
  min-width: 25%;
}

.option.selected::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #fff; /* Color of the bottom outline */
}

.side_bar {
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  height: 100%;
  width: 350px; /* Adjust width as needed */
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  z-index: 2;
  transform: translateX(0); /* Initially visible */
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}
.no_animate {
  transition: none;
}
.side_bar_content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.side_bar_content::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}
.side_bar_right {
  left: unset;
  right: 0; 
}
.side_bar.closed {
  transform: translateX(-100%); /* Slide out of view */
}
/* Style for the image */
.side_bar img {
  display: block;
  margin: 30px auto; /* Add top margin to move image down */
  width: 100%; /* Ensure the image is responsive */
  max-width: 250px; /* Set a max width */
}
/* Style for the buttons */
.side_bar .main_button_container {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.side_button {
  position: relative;
  overflow: hidden;
  display: block;
  flex: 1;
  padding: 15px;
  margin-bottom: 10px;
  font-family: "Noto Sans Symbols 2", sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  width: calc(100% - 20px);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.side_button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.darker {
  background: rgb(10, 10, 10, 0.5);
}
.admin_feature {
  display: none;
}
.side_bar .arrow_button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
  transition: transform, color 0.3s ease;
  font-family: "Noto Sans Symbols 2", sans-serif;
}
.side_bar .arrow_button:hover {
  color: orange;
}
.side_bar .sub_buttons {
  display: none; /* Hidden by default */
  margin-top: 0;
  margin-left: 20px;
}
.side_bar .sub_button {
  width: calc(100% - 20px);
  padding: 15px;
  margin-bottom: 5px;
  font-family: "Noto Sans Symbols 2", sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: white;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.side_bar .sub_button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
/* Style for the toggle button */
.toggle_button {
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  z-index: 3;
  font-size: 22px;
  height: 100%;
  overflow: hidden;
  font-family: "Noto Sans Symbols 2", sans-serif;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.toggle_button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.approval_button {
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans Symbols 2", sans-serif;
  font-size: 28px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  transition: .4s ease opacity;
  cursor: pointer;
}
.approval_button:hover {
  opacity: 0.5;
}
.reject {
  color: #eb4634;
}
.approve {
  color: #578f21;
}
.login_container {
  max-width: 400px;
  padding: 50px;
}
.approve_container {
  background: none;
  box-shadow: none;
}
.write_container::before,
.write_container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px; /* Adjust the height of the jagged edge */
  background: white;
  left: 0;
  z-index: 1;
}
.write_container::before {
  top: 1px; /* Adjust the position of the top jagged edge */
  transform: translateY(-100%);
  clip-path: polygon(0 100%, 2.5% 0, 5% 100%, 7.5% 0, 10% 100%, 12.5% 0, 15% 100%, 17.5% 0, 20% 100%, 22.5% 0, 25% 100%, 27.5% 0, 30% 100%, 32.5% 0, 35% 100%, 37.5% 0, 40% 100%, 42.5% 0, 45% 100%, 47.5% 0, 50% 100%, 52.5% 0, 55% 100%, 57.5% 0, 60% 100%, 62.5% 0, 65% 100%, 67.5% 0, 70% 100%, 72.5% 0, 75% 100%, 77.5% 0, 80% 100%, 82.5% 0, 85% 100%, 87.5% 0, 90% 100%, 92.5% 0, 95% 100%, 97.5% 0, 100% 100%);
}

.write_container::after {
  bottom: 1px; /* Adjust the position of the bottom jagged edge */
  transform: translateY(100%);
  clip-path: polygon(0 0, 2.5% 100%, 5% 0, 7.5% 100%, 10% 0, 12.5% 100%, 15% 0, 17.5% 100%, 20% 0, 22.5% 100%, 25% 0, 27.5% 100%, 30% 0, 32.5% 100%, 35% 0, 37.5% 100%, 40% 0, 42.5% 100%, 45% 0, 47.5% 100%, 50% 0, 52.5% 100%, 55% 0, 57.5% 100%, 60% 0, 62.5% 100%, 65% 0, 67.5% 100%, 70% 0, 72.5% 100%, 75% 0, 77.5% 100%, 80% 0, 82.5% 100%, 85% 0, 87.5% 100%, 90% 0, 92.5% 100%, 95% 0, 97.5% 100%, 100% 0);
}
/* End Jagged Edge Code */
/* Checkbox Code */
.checkbox {
  --background: #fff;
  --border: #d1d6ee;
  --border-hover: #bbc1e1;
  --border-active: #1e2235;
  --tick: #fff;
  position: relative;
  display: inline-block;
  top: 5px;
  margin-right: 5px;
}
.checkbox input,
.checkbox svg {
  width: 21px;
  height: 21px;
  display: block;
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: var(--background);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}
.checkbox input:hover {
  --s: 2px;
  --b: var(--border-hover);
}
.checkbox input:checked {
  --b: var(--border-active);
  background: transparent;
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--stroke, var(--border-active));
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.checkbox.path input:checked {
  --s: 2px;
  transition-delay: 0.4s;
}
.checkbox.path input:checked + svg {
  --a: 16.1 86.12;
  --o: 102.22;
}
.checkbox.path svg {
  stroke-dasharray: var(--a, 86.12);
  stroke-dashoffset: var(--o, 86.12);
  transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}
.checkbox.bounce {
  --stroke: var(--tick);
}
.checkbox.bounce input:checked {
  --s: 11px;
}
.checkbox.bounce input:checked + svg {
  -webkit-animation: bounce 0.4s linear forwards 0.2s;
          animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --scale: 0;
}

.action-buttons {
  margin-top: 10px;
}
.action-buttons button {
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  border: none;
  background-color: #2051b3;
  color: white;
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2);
  border-radius: 5px;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
}
.action-buttons input {
  padding: 10px;
  border-radius: 5px;
  width: 100%;
}
.action-buttons button:disabled {
  background-color: rgb(100, 100, 100) !important; /* Light gray background */
  color: rgb(200, 200, 200); /* Dark gray text */
  cursor: default; 
  opacity: 0.8; /* Reduce opacity to make it look grayed out */
}
.action-buttons button:hover {
  background-color: #1b4394;
}
.bottom_poem_half {
  font-family: 'Nunito', sans-serif;
}
.comment {
  padding: 10px;
  color: #000;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 50px 1px rgba(0,0,0,0.1);
}
.comment b {
  color: #000;
}

.action-buttons button.delete {
  background-color: #dc3545;
}
.action-buttons button.delete:hover {
  background-color: #c82333;
}
.action-buttons .wide {
  width: 100%;
}
.action-buttons button.padding {
  padding: 10px 40px;
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
}
.create_account_box {
  max-width: 320px;
  position: relative;
}
.create_account_box input {
  padding: 8px;
  width: 300px;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  background: rgba(10, 10, 10, 0.5);
  border: none;
  color: rgb(180, 180, 180);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
.create_account_box select {
  padding: 8px;
  width: 316px;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  background: rgba(10, 10, 10, 0.5);
  color: rgb(180, 180, 180);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
select option {
  background: rgba(10, 10, 10, 0.8);
  color: rgb(200, 200, 200);
  font-family: 'Nunito', sans-serif;
  border: none;
  outline: none;
  font-size: 14px;
}
.create_account_box button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
}
.user_info_container {
  --spacing : 1.5rem;
  --radius  : 10px;
  max-width: 800px;
}
.user_info_container ul {
  margin-left  : calc(var(--radius) - var(--spacing));
  padding-left : 0;
}
.user_info_container .banned {
  color: red;
}
.user_info_container li {
  color: rgb(200, 200, 200);
  border-left : 2px solid #ddd;
  display      : block;
  position     : relative;
  padding-left : calc(2 * var(--spacing) - var(--radius) - 2px);
  padding-top: 5px;
  padding-bottom: 5px;
}
.user_info_container li:last-child {
  border-color : transparent;
}
.user_info_container button {
  margin-left: 5px;
  background: #4CAF50;
  outline: none;
  border: none;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  border-radius: 5px;
  cursor: pointer;
}
.user_info_container button:hover {
  background: #3e9041;
}
.user_info_container li::before{
  content      : '';
  display      : block;
  position     : absolute;
  top          : calc(var(--spacing) / -2);
  left         : -2px;
  width        : calc(var(--spacing) + -1px);
  height       : calc(var(--spacing) + 3px);
  border       : solid #ddd;
  border-width : 0 0 2px 2px;
}
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }

@-webkit-keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
  @media (max-width:550px) { 
    .global_container {
      height: 100%;
    }
    .footer {
      display: none;
    }
    .toggle_button {
      height: 50px !important;
    }
    .side_bar {
      width: calc(100% - 30px) !important;
    }
    .container:focus-within {
      transform: scale(1);
    }
  } 
  @media (max-width:430px) { 
    .container {
      zoom: 80%;
    }
  } 