body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #ffd700;
  font-size: 3em;
  font-weight: bold;
  text-shadow: 0px 0px 15px rgba(255, 215, 0, 0.9);
}

p {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffffff;
}

#balance {
  font-size: 8em;
  font-weight: bold;
  margin-top: 10px;
}

.positive-balance {
  background: linear-gradient(
    180deg,
    #ffd700,
    #daa520,
    #b8860b
  ); /* Guld Gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 15px rgba(255, 215, 0, 0.9);
}

.negative-balance {
  color: #ff4d4d; /* Rød */
}

.transaction-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border: 1px solid #333;
  padding: 15px;
  margin: 10px auto;
  width: 50%;
  border-radius: 10px;
}

.transaction-date {
  font-size: 1.4em;
  font-weight: bold;
  color: #b0b0b0;
}

.transaction-amount {
  font-size: 2.5em;
  font-weight: bold;
  margin: 5px 0;
}

.positive {
  color: #00bfff; /* Lysere blå for positive beløb */
}

.negative {
  color: #ff4d4d; /* Rød for negative beløb */
}

.transaction-note {
  font-size: 1.2em;
  color: #aaaaaa;
}
