main {
  margin-top: var(--header-height); /* offset equal to header height */
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: verdana;
}

h1 {
    color: #000000 !important;
    font-size: 20px;
    font-weight: lighter;
    margin: 0;
}

h2 {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: lighter;
    margin: 0;
    padding: 10px 20px;
    text-align: center;
}

h3 {
    color: #ffffff !important;
    margin: 0;
}

.logoutButton {
    display: inline-block;
    padding:4px 10px;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
}

.logoutButton:hover {
    color: #000000;
}

#sessionInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9em;
    gap: 10px;
}

.customButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4f8cde;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.customButton:hover {
    color: #000000;
}

