a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(237, 168, 77);
}

a:hover {
  color: rgb(221, 197, 165);
}

body {
  background-color: #061818;
  color: beige;
}

.start_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.start_buttons img {
  max-width: 100%;
  height: auto;
  font-size: 10px;
  transition: transform 0.3s;
}

.start_buttons img:hover {
  transform: scale(1.1);
}

#header,
#content,
#content-user {
  max-width: 1200px;
  margin: 30px auto;
  background-color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 10px;
  border: 2px solid rgb(255, 255, 255);
}

#content {
  min-height: 600px;
}

#char-info-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
}

#corp-info-all {
  display: flex;
  gap: 20px;
}

#wallet {
  font-weight: bold;
}

#info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#info div {
  padding: 3px;
}

#info-char {
  display: contents;
}

#img-name {
  border: 1px solid rgb(255, 255, 255);
}

#name {
  font-size: 20px;
}

#corporation-block,
#alliance-block,
#system-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#img-corporation,
#img-alliance,
#img-name {
  display: block;
}

#corporation,
#alliance,
#system {
  margin-top: 8px;
}

#system-block {
  justify-items: right;
}

#info {
  text-align: right;
}

#char {
  display: flex;
  gap: 20px;
}

#menu-nav {
  margin: 0 auto;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu-nav div:hover {
  cursor: pointer;
  color: rgb(153, 150, 60);
}

#content-user {
  overflow-y: auto;
  overflow-x: auto;
  border-radius: 12px;
  border: 2px solid #2a2a3e;
  position: relative;
}

.transactions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 800px;
}

.transactions-table thead th {
  position: sticky;
  top: 0;
  background: #0d0d1a;
  color: #4a9eff;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #4a9eff;
  z-index: 10;
}

.transactions-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #2a2a3e;
}

.transactions-table tbody tr:hover {
  background: rgba(106, 107, 108, 0.1);
}

.transactions-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.buy {
  color: #ff6b6b;
  font-weight: bold;
}

.sell {
  color: #51cf66;
  font-weight: bold;
}

.planets-table {
  width: 100%;
  border-collapse: collapse;
}

.planets-table th,
.planets-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.planets-table th {
  background: #0d0d1a;
  color: #4a9eff;
  position: sticky;
  top: 0;
}

.planets-table tr:hover {
  background: rgba(74, 158, 255, 0.1);
}

#add-corp-user {
  max-width: 500px;
  margin: 0 auto;
  font-size: 20px;
}

#add-corp-user input {
  margin-bottom: 10px;
  width: 490px;
  text-align: center;
  height: 40px;
  background-color: rgb(0, 0, 0);
  color: rgb(237, 168, 77);
  border-radius: 8px;
}

#pull-add-corp {
  display: flex;
  justify-content: center;
  width: 170px;
  margin: 0 auto;
  border-radius: 10px;
  text-align: center;
  padding: 3px;
  color: rgb(237, 168, 77);
  border: 2px solid rgb(255, 255, 255);
  height: 40px;
  align-items: anchor-center;
}

#pull-add-corp:hover {
  cursor: pointer;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

#corp {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 20px;
}

#success {
  text-align: center;
}
