* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
    height: 100%;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #fafafa;
    color: var(--color);
}
h1{
    position: absolute;
    left: 16.4rem;
    top: 1.8rem;
    font-size: 1.9rem;
}
#logout, #logout_customer{
    position: absolute;
    width: 100%;
    max-width: 1804px;
    text-align: right;
}
#logout{
    /*width: calc(100% - 4rem);*/
    top: 3.3em;
    padding-right: 3rem;
}
#logout_customer{
    top: 2.5em;
    padding-right: 2.5rem;
}
#logout a, #logout_customer a{
    color: var(--color);
    text-decoration: none;
    font-weight: 700;
}
#logo{
    width: 10rem;
    position: absolute;
    left: 2rem;
    top: 2rem;
}
/* Layout mit Sidebar und Main */
#formular_frame{
    max-width: 1804px;
}
.layout {
  display: flex;
  height: 100vh;
  height: calc(100% - 3rem);
}

/* Seitenmenü */
.sidebar {
  width: 14rem;
  color: var(--color);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  position: relative;  

}
nav{
    margin: 6rem 0;
}
.sidebar nav button {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.2rem;    
    border: none;
    padding: 0.8rem 1rem;
    margin-bottom: 0.3rem;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
    border: none;
}

.sidebar nav button:hover{
  background: #eee;
}

.sidebar nav button.active {
    background: #eee;
        font-size: 1.2rem;
}

.sidebar nav button.sub{
    margin-left:20px;
}

.info{
    position: absolute;
    bottom: 4rem;
    color: var(--color);
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    width: 100%;
    left: 0;
    padding-left:2.6rem;
}

/* Hauptbereich */
.main {
  flex: 1;
  /*border: 1px solid #f0f0f0;*/
  box-shadow: 0px 0px 4px #e5e5e5;
  margin-top: 1rem;
  border-top-left-radius: 6px;
  background-color: white;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-top-left-radius: 6px;
}
#top{
    padding: 2.3rem 0 0rem 2.8rem;
    margin-left: -3rem;
    width: 300%;
   height: 134px;
}