/* Header styling */
.header-container {
  position: absolute;
  top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.header-container .left-text {
  margin-right: 10px;
  padding-top: 8px;
  font-family: "Roboto mono";
  color: #e5c65c;
}

.header-container .right-text {
  margin-left: 10px;
  padding-top: 8px;
  font-family: "Roboto mono";
  color: #e5c65c;
}

h1 {
  font-family: "Roboto mono";
  text-align: center;
  color: #5e79a3;
  margin: 0;
}

a {
  font-family: "Roboto mono";
}

/* Navigation menu styling */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #434748;
  position: relative;
  z-index: 1;
}

li {
  float: left;
}

li a {
  display: block;
  color: #d8d5d2;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-family: "Roboto mono";
}

li a:hover {
  background-color: #81d1f1;
}

.mem_addr {
  color: #76d88f;
  font-family: "Roboto mono";
  padding-left: 20px;
  padding-right: 40px;
}

/* Base body styling */
body {
  margin: 0;
  padding: 0;
  background-color: #282424;
  font-family: Inter;
  font-size: 16px;
  color: #d8d5d2;
}

/* Rectangle containers */
.menu_rectangle {
  height: 50px;
  width: 100vw;
  background-color: #434748;
  position: relative;
  z-index: 1;
}

.title_rectangle {
  height: 60px;
  width: 100vw;
  background-color: #383c3d;
  position: relative;
  z-index: 1;
}

/* Main content layout */
.content-container {
  display: flex;
  margin-top: 40px;
}

.left-column {
  width: 320px;
  padding-left: 20px;
}

.right-column {
  flex: 1;
  padding-left: 30px;
}

/* Table-based styling for proper column alignment */
.table-header {
  display: flex;
  height: 30px;
  width: 300px;
  background-color: #505454;
  margin-bottom: 0;
}

.table-header .col {
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: #d8d5d2;
  font-family: "Inter";
  font-size: 14px;
}

.table-header .col:first-child {
  width: 50%;
  border-right: 1px solid #0f1111;
}

.table-header .col:last-child {
  width: 50%;
}

.table-container {
  height: 400px;
  width: 300px;
  overflow-y: auto;
  border: 1px solid #434748;
  background-color: #0f1111;
  margin-top: 0;
  border-radius: 4px;
}

.table-container-small {
  height: 200px;
  width: 300px;
  overflow-y: auto;
  border: 1px solid #434748;
  background-color: #0f1111;
  margin-top: 0;
  border-radius: 4px;
}

.table-row {
  display: flex;
  width: 100%;
}

.table-cell {
  padding: 8px 12px;
  width: 50%;
  box-sizing: border-box;
  font-size: 14px;
}

.table-cell:first-child {
  border-right: 1px solid #282424;
}

.table-row:hover {
  background-color: #434748;
}

/* Custom scrollbar styling */
.table-container::-webkit-scrollbar,
.table-container-small::-webkit-scrollbar {
  width: 8px;
}

.table-container::-webkit-scrollbar-track,
.table-container-small::-webkit-scrollbar-track {
  background: #282424;
}

.table-container::-webkit-scrollbar-thumb,
.table-container-small::-webkit-scrollbar-thumb {
  background-color: #5e79a3;
  border-radius: 4px;
}

/* Horizontal container for right column */
.horizontal-container {
  display: flex;
  gap: 0;
  align-items: center;
  margin: 10px 0;
}

.horizontal-container p.mem_addr {
  flex: 0 0 auto;
  margin-right: 5px;
  width: auto;
}

.horizontal-container p:not(.mem_addr) {
  flex: 1;
  margin: 0;
}

/* Normal lists styling */
.normal-list {
  list-style-type: disc;
  background-color: transparent;
  overflow: visible;
  padding-left: 180px;
}

.normal-list li {
  float: none;
  display: list-item;
  padding: 5px 0;
  color: #d79aca;
}

.normal-list li a {
  display: inline;
  padding: 0;
  text-decoration: underline;
  color: #81d1f1;
}

.normal-list li a:hover {
  background-color: transparent;
  text-decoration: none;
}

/* Space between tables */
.table-spacer {
  height: 20px;
}

a:link {
  color: #81d1f1;
  background-color: transparent;
  text-decoration: none;
}