body {
    /* display: flex; */
    height: 100vh;
    overflow: hidden;
    font-size: 12px;
    margin: 0;
}
header {
    background-color: var(--main-bg-color);
    color: var(--main-color);
}
header .logo {
    width: 50px;
}
header .headline h1 {
    font-weight: 600;
    font-size: 32px;
}
header .searchContainer {
    background-color: var(--sub-bg-color);
    border: 1px solid var(--border-color);
}
header .searchContainer input {
    border: none;
    background-color: var(--sub-bg-color);
    color: var(--main-color);
    padding: 5px 2px;
    transition: all 0.25s ease;
    width: 140px;
}
header .searchContainer input:focus {
    width: 210px;
}
header .searchContainer button {
    background-color: var(--sub-bg-color);
    border: none;
    color: var(--main-color);
    padding: 5px 10px;
}
#wrapper {
    display: flex;
    width: 100%;
    height: 94%;
    border: 1px solid var(--border-color);
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: var(--sub-bg-color);
    padding: 10px;
    padding-left: 0px;
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
}
p, li {
    color: var(--main-color);
}
.content, .inner-search-results, .note {
    max-width: 1150px;    
}
#content {
    flex-grow: 1;
    padding: 29px;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
    position: relative;
    background-color: var(--main-bg-color);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--main-color);
}

a.active {
    font-weight: bold;
    color: var(--primary-color);
}

.tree ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
}

.tree ul li {
    margin: 2px 0;
    padding-left: 0px;
    position: relative;
}

.tree li .toggle {
    cursor: pointer;
    color: var(--main-color);
    display: flex;
    align-items: center;
}

.tree li ul {
    display: none;
}

.tree li.expanded > ul {
    display: block;
}

.tree li .toggle i {
    margin-right: 5px;
    transition: transform 0.3s ease;
    color: var(--main-color); 
}

.tree li .toggle i,
.tree li .toggle1 i {
    margin-right: 5px;
    transition: transform 0.3s ease;
    color: var(--main-color);
    width: 7px;
    display: inline-block;
}

.tree li.expanded .toggle i {
    transform: rotate(90deg);
}

.tree li .toggle1 i {
    margin-right: 5px;
    transition: transform 0.3s ease;
    color: var(--main-color); 
}

.request a {
    font-weight: normal;
}

.request a.active {
    font-weight: bold;
}

.icon {
    margin-right: 5px;
}

.tree .text-primary {
    color: var(--main-color);
}

.tree-divider {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    width: auto;
}

.loading-bar, .pace, .pace-inactive {
    display: none !important;
}

#content {
    border: none;
    outline: none;
}

.tree > ul {
    margin-top: 0;
    padding-left: 0;
}

.abstand {
    padding-left: 0px;
}

.progress {
    display: none !important;
}
.tmplHinweis p {
    margin: 0;
}
.abstandText {
    padding-left: 10px;    
}

a {
    color: var(--main-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
#content a {
    text-decoration: underline;
}
#content a:hover {
    text-decoration: underline;
}
.headerAbstand {
    margin-top: -15px;
}

.tree .toggle1 {
    cursor: pointer;
}

.breadcrumb-container {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 10px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    padding-left: 10px;
    padding-bottom: 20px;
}

.breadcrumb-item {
    margin-right: 1px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--main-color);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--main-color);
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .0rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: .0rem;
}

.invisible-chevron {
    visibility: hidden;
    width: 7px;
    display: inline-block;
}
.note {
    display: flex;
    align-items: center;
    border-left: 4px solid #3F51B5;
    padding: 10px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    font-size: 14px;
}
.note.bg-Gruen{
    background-color: rgba(0, 128, 0, 0.1);
}
.note.bg-Violett{
    background-color: rgba(128, 0, 255, 0.1);
}
.note.bg-Rot{
    background-color: rgba(255, 0, 0, 0.1);
}
.note.bg-Orange{
    background-color: rgba(255, 166, 0, 0.1);
}

.note.border-Gruen{
    border-left: 4px solid green;
}
.note.border-Violett{
    border-left: 4px solid #7F00FF;
}
.note.border-Rot{
    border-left: 4px solid red;
}
.note.border-Orange{
    border-left: 4px solid orange;
}

.note .icon {
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.note .icon.icon-Gruen{
    background-color: green;
} 
.note .icon.icon-Violett{
    background-color: #7F00FF;
}
.note .icon.icon-Rot{
    background-color: red;
}
.note .icon.icon-Orange{
    background-color: orange;
}
.note ol {
    margin: 0;
    padding-left: 20px;
}

.note ol li {
    font-weight: bold;
    color: #ff9900;
}

.a {
    color: #3F51B5;
    text-decoration: none;
}
.a.text-Gruen{
    color: green;
}
.a.text-Violett{
    color: #7F00FF;
}
.a.text-Rot{
    color: red;
}
.a.text-Orange{
    color: orange;
}

.custom-title {
    font-size: 0.7rem; 
}
.no-underline {
    text-decoration: none !important; 
    font-weight: 600; 
}

a:hover {
    text-decoration: underline;
}

h4 {
    font-size: 1.65rem;
}
h5 {
    font-size: 1.1rem;
    font-weight: 400;
}
p, li {
    font-size: 13px;
}
.searchText {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
}
.noAccessText {
    padding-top: 12%;
}
.noAccessText .innerContainer h1{
    font-weight: 600;
    font-size: 28px;
}
.noAccessText .innerContainer p{
    font-size: 16px;
    line-height: 5px;
}
.noAccessText .sadEmoji {
    font-size: 46px;
}

nav > div > div {
    height: 61px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--primary-color);
}
.laserbar {
    background-color: var(--primary-color);
    height: 6px;
    width: 100%;
}
nav input[type="submit"] {
    background-color: var(--sub-bg-color);
    color: var(--main-color);
    border: var(--border-color) 1px solid;
    border-radius: 7px;
    padding: 4px 7px;
    cursor: pointer;
    transition: all 0.25s ease;
}
nav input[type="submit"]:active {
    filter: brightness(0.8);
}
nav .ssoTag {
    color: var(--main-color);
}