.dashboard-header {
  background-color: #73a026;
  padding: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #644726;
}

.dashboard-background {
    background: linear-gradient(45deg, #321900, #7c6531);
    height: calc(100vh - 4rem);

    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-content {
    background: linear-gradient(to bottom, #b3882f, #7b5015);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 50rem;
    height: 100%;
    border: 1px solid #644726;

    overflow-y: auto;
}


.dashboard-header h1 {
  color: white;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.2em;
}