body {
  background-color: #000;
  background-image: url('img/bkg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-attachment: fixed;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid gold;
  border-radius: 10px;
}

h1, h2 {
  text-align: center;
  color: gold;
}

label {
  display: block;
  margin-top: 10px;
  color: gold;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
}

input:disabled {
  background-color: #333;
  color: #ccc;
  border: 1px solid #666;
}

button {
  background-color: gold;
  color: black;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: black;
  color: gold;
  box-shadow: 0 0 20px gold;
  transform: scale(1.03);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  padding: 10px 0;
  margin: 0;
  background-color: #111;
  border-bottom: 1px solid gold;
}

nav ul li a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.2s, color 0.2s;
}

nav ul li a:hover {
  background-color: gold;
  color: black;
}

.hidden {
  display: none;
}

.error {
  color: red;
  margin-top: 10px;
  text-align: center;
}

.status {
  color: limegreen;
  margin-top: 10px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

td {
  padding: 10px;
  border: 1px solid #444;
  vertical-align: top;
}

td:first-child {
  width: 35%;
  font-weight: bold;
  color: gold;
}

td:last-child {
  width: 65%;
}

#logout-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
} 

textarea {
  resize: vertical;
  min-height: 80px;
}