body,
html {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.center-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  padding: 0;
}

.report-page,
.login-form {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0 20px;
}

.report-page {
  width: 100%;
  height: 100%;
}

.login-form {
  min-width: 300px;
  max-width: 92vw;
  max-height: 90vh;
}
.login-form h2 {
  margin-top: 20px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.login-form p {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}
.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="number"],
.login-form input[type="password"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.login-form #init-submit-container,
.login-form #login-submit-container {
  margin-bottom: 20px;
}
.login-form button {
  width: 100%;
  padding: 0.6rem;
  background: #5e5e5e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
}
.login-form button:hover {
  background: #5e5e5e;
}
.login-form button[type="submit"] {
  background: #0078d4;
}
.login-form button[type="submit"]:hover {
  background: #005fa3;
}

.report-menu-item-template{
  color:red;
  background:purple;
}

.error-message {
  color: red;
}

div.overlay {
  display: none;
  text-align: center;
  line-height: 100vh;
}
div.overlay svg {
  width: 100px;
  height: 100px;
}
body.loading div#loading {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.9;
  z-index: 2;
  background-color: white;
}

div#report-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  overflow-y: hidden;
  overflow-x: auto;
}
div#report-container {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
div#report-header > *,
div#report-header li {
  display: inline-block;
  height: 100%;
  line-height: 30px;
  padding: 0 10px;
  margin: 0;
  box-sizing: border-box;
  background-color: white;
  border-radius: 5px 5px 0px 0px;
  color:darkgrey;
}
div#report-header li:hover,
div#report-header li.current {
  background-color: #2a2f47;
}
div#report-header > h2 {
  font-size: 1.1rem;
}
div#report-header a,
div#report-header a:active,
div#report-header a:visited {
  text-decoration: none;
  color: #2a2f47;
}
div#report-header a:hover,
div#report-header li.current a,
div#report-header li.current a:active,
div#report-header li.current a:visited {
  text-decoration: none;
  color: white;
}
