/* Grundinställningar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Spectral', serif;
  background: #000;
  color: #fff;
}

/* Topmeny */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 10px 20px;
  border-bottom: 2px solid #ffaa00;
}

.navbar .logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: #ffaa00;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.navbar ul li a:hover {
  color: #ffaa00;
}

/* Overlay för mittinnehåll */
.overlay {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #000000 0%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Panelen */
.main-panel {
  background: rgba(20, 20, 20, 0.9);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #ffaa00;
  text-align: center;
  box-shadow: 0 0 20px #ffaa00aa;
  max-width: 1200px;
  width: 100%;
}

/* Titlar */
.title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: #ffaa00;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #ffaa00aa;
}

/* Beskrivningstext */
.tagline {
  font-size: 18px;
  margin-bottom: 30px;
  font-style: italic;
  color: #ccc;
}

/* Knappar */
.btn {
  background: #ffaa00;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #ffaa00aa;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background: #ffc533;
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffc533;
}

/* Formulär */
.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form input {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ffaa00;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
}

.form input::placeholder {
  color: #aaa;
}

/* Startsida: bildsektion */
.images img {
  max-width: 200px;
  margin: 10px;
  border: 2px solid #ffaa00;
  border-radius: 8px;
}

/* Footer */
footer {
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}
/* Highscore-tabell */
.highscore-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1a1a1a;
  box-shadow: 0 0 15px #ffaa00aa;
  border: 2px solid #ffaa00;
}

.highscore-table th,
.highscore-table td {
  padding: 12px;
  border: 1px solid #333;
  text-align: center;
}

.highscore-table th {
  background-color: #262626;
  color: #ffd700;
}

.highscore-table tr:nth-child(even) {
  background-color: #121212;
}

.skills-sidebar li.selected {
  color: #ffaa00;
  font-weight: bold;
  text-shadow: 0 0 5px #ffaa00aa;
}
