body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
    text-align: center;
}

/* style.css */
.logout-form {
    display: inline;
}
.logout-link {
    background: none;
    border: none;
    color: blue;
    cursor: pointer;
    padding: 0;
    font: inherit;
    text-decoration: underline; /* makes it look exactly like <a> */
}

.flex-standard
{
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    min-height: 80vh;
}

#warning
{
    color: red;
}

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
  }
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Links inside the navbar */
  .navbar-anchor {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: blue;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Make the form inline with the links */
.navbar-form {
    float: left;               /* Align with other links */
    margin: 0;                  /* Remove default spacing */
}

/* Make the button look like a link */
.navbar-form button {
    background: none;           /* Remove default button background */
    border: none;               /* Remove button border */
    color: white;               /* Same as navbar text */
    padding: 14px 16px;         /* Same as links */
    font-size: 16px;            /* Same as links */
    font-family: inherit;       /* Match navbar font */
    cursor: pointer;            /* Show pointer on hover */
}

/* Hover effect like other links */
.navbar-form button:hover {
    background-color: blue;
}

/* Make form behave like other dropdown links */
.dropdown-logout {
    margin: 0;             /* Remove default spacing */
}

.dropdown-logout button {
    background: none;       /* Remove button background */
    border: none;           /* Remove button border */
    padding: 12px 16px;     /* Same as dropdown links */
    width: 100%;            /* Fill dropdown width */
    text-align: left;       /* Align text like links */
    color: black;           /* Match dropdown link color */
    font-size: 16px;
    cursor: pointer;
}

/* Hover effect */
.dropdown-logout button:hover {
    background-color: #ddd;
}

span.required {
    color: red;
  }


