body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

body, html {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1rem;
  height: 60px;
}
.app-header > * {
  display: flex;
}
.app-header .app-identity {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.app-header .app-identity .app-icon {
  position: relative;
  width: 50px;
  height: 50px;
}
.app-header .app-identity .app-icon img {
  width: 100%;
  height: 100%;
}
.app-header .app-identity .app-names {
  margin-left: 0.5rem;
  display: flex;
  flex-direction: column;
}
.app-header .app-identity .app-names .app-name-1 {
  font-weight: bold;
  font-size: 1rem;
}
.app-header .app-identity .app-names .app-name-2 {
  font-size: 0.8rem;
}
.app-header .app-user {
  position: relative;
  cursor: pointer;
}
.app-header .app-user .profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
}
.app-header .app-user .mxdv-logo {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 18px;
  height: 18px;
}
.app-header .hamburger-btn {
  display: none;
}
.app-header .app-spacer {
  margin-left: 16px;
  margin-right: auto;
}

.app-shell {
  display: flex;
  flex: 1 1 auto;
  min-height: calc(100vh - 60px);
}

.app-nav {
  width: 220px;
  padding: 1rem 0.5rem;
  flex-shrink: 0;
  overflow-y: auto;
}
.app-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.app-nav nav ul .nav-item > * {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.app-nav nav ul .nav-item > * img {
  width: 32px;
  height: 32px;
  margin-right: 0.6rem;
}
.app-nav nav ul .nav-item > * span {
  flex: 1 1 auto;
}
.app-nav nav ul .nav-item > *.active {
  font-weight: bold;
}

.app-content {
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
}
.app-content .page-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.app-content .page-header .breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.app-content .page-header .breadcrumbs a {
  text-decoration: none;
}
.app-content .page-header .breadcrumbs a:hover {
  text-decoration: underline;
}
.app-content .page-header .page-title {
  display: flex;
  align-items: center;
}
.app-content .page-header .page-title img {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}
.app-content .page-header .page-title h1 {
  margin: 0;
  font-size: 1.5rem;
}
.app-content .result-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  border-left: 5px solid;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.app-content .content-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-content .content-column .site-content > div {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}
.app-content h2 {
  margin-block-start: 0;
}
.app-content a {
  text-decoration: underline;
}
.app-content form {
  margin-bottom: 8px;
}

.app-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
.app-footer a {
  text-decoration: underline;
}

.app-switcher {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.app-switcher.open {
  display: block;
}
.app-switcher .switcher-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.app-switcher .switcher-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  width: 90%;
  max-width: 600px;
  max-height: 95%;
  overflow-y: auto;
  z-index: 2010;
}
.app-switcher .switcher-content .switcher-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.app-switcher .switcher-content .switcher-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid;
}
.app-switcher .switcher-content .switcher-header h2 {
  margin: 0;
  font-size: 1.25rem;
}
.app-switcher .switcher-content .switcher-header .mxdv-logo-large {
  width: 40px;
  height: 40px;
}
.app-switcher .switcher-content .switcher-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0.75rem;
  border-radius: 8px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.app-switcher .switcher-content .switcher-user .switcher-user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.app-switcher .switcher-content .switcher-user .switcher-user-info .switcher-user-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.app-switcher .switcher-content .switcher-user .switcher-user-info .switcher-user-name {
  font-weight: bold;
  font-size: 1rem;
}
.app-switcher .switcher-content .switcher-user .switcher-user-info .switcher-user-email {
  font-size: 0.85rem;
}
.app-switcher .switcher-content .switcher-user button {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 12px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header .logo {
  display: flex;
  justify-content: center;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header .logo .logo-square {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header .login-titles h2 {
  margin: 0;
  font-size: 18px;
  text-align: left;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header .login-titles .switcher-login-subtitle {
  text-align: left;
  margin: 0;
  font-size: 0.8rem;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-header .login-titles .switcher-login-subtitle-small {
  display: none;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group label {
  font-size: 12px;
  margin-bottom: 3px;
  font-weight: normal;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group input {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper input {
  padding-right: 40px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper .toggle-password {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper .toggle-password:hover {
  opacity: 1;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper .toggle-password svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper .toggle-password svg .eye-slash {
  display: none;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .form-group .password-wrapper .toggle-password.slashed svg .eye-slash {
  display: block;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .login-button {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .password-help {
  margin-top: 8px;
  text-align: right;
  font-size: 11px;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .password-help a {
  text-decoration: none;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .password-help a:hover {
  text-decoration: underline;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .info-text {
  margin-top: 12px;
  font-size: 10px;
  text-align: center;
  opacity: 0.8;
}
.app-switcher .switcher-content .switcher-user .switcher-user-login .info-text p {
  margin: 2px 0;
}
.app-switcher .switcher-content .switcher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) {
  .app-switcher .switcher-content .switcher-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.app-switcher .switcher-content .switcher-grid .app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.app-switcher .switcher-content .switcher-grid .app-card .app-card-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-switcher .switcher-content .switcher-grid .app-card .app-card-titles .app-card-primary {
  font-weight: bold;
}
.app-switcher .switcher-content .switcher-grid .app-card .app-card-titles .app-card-secondary {
  font-size: 0.75rem;
  opacity: 0.8;
  height: 1.1em;
}
.app-switcher .switcher-content .switcher-grid .app-card .app-card-titles .app-card-secondary:empty {
  visibility: hidden;
}
.app-switcher .switcher-content .switcher-grid .app-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.4rem;
}
.app-switcher .switcher-content .switcher-grid .app-card:hover {
  transform: scale(1.05);
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  padding: 6px;
  width: 32px;
  height: 32px;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrapper input {
  padding-right: 40px !important;
}
.password-wrapper button:hover {
  background: none;
}
.password-wrapper button:active {
  background: none;
}

form.simple {
  max-width: 400px;
}
form.simple > button {
  width: 100%;
}
form.simple .password-wrapper input {
  width: 100%;
}
form button {
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.form-element {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-element label {
  margin-bottom: 6px;
}
.form-element input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid;
}

@media (max-width: 900px) {
  .app-header {
    height: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .app-header .app-user {
    position: relative;
    order: 2;
    cursor: pointer;
  }
  .app-header .app-user .profile-picture {
    width: 50px;
    height: 50px;
    display: block;
  }
  .app-header .app-user .mxdv-logo {
    position: absolute;
    bottom: 0;
    right: -5px;
    width: 18px;
    height: 18px;
  }
  .app-header .hamburger-btn {
    display: inline-block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 0.5rem;
  }
  .app-nav {
    position: fixed;
    left: -240px;
    top: 60px;
    height: calc(100% - 60px);
    z-index: 1000;
    transition: left 0.3s;
    width: 220px;
  }
  .app-nav.open {
    left: 0;
  }
  .app-shell {
    flex-direction: column;
  }
}

/*# sourceMappingURL=shared-layout.css.map */
