#navigation {
    position: fixed;
   top: 10px;
   left: 35px;
    width: 100%;
    z-index: 99;
    color: var(--color-main);
    text-transform: uppercase;
    font-size: 11px;
    display: flex;
    flex-direction: column;
}

#navigation .navigation-main > * {
    display: flex;
    align-items: center;
}

#navigation .welcomeblock {
    height: var(--navheight);
    font-family: var(--main-font);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 0.2em;
}

#navigation .welcomeblock a {
    color: var(--color-main);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

#navigation .welcomeblock a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: var(--color-accent2);
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

#navigation .welcomeblock a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

#navigation .welcomeblock a:hover {
    color: var(--color-accent2);
    cursor: pointer;
    transition: all 0.3s ease;
}



/**********************************
    Down
**********************************/

.navigation-down {
	display:flex;
	justify-content: end;
	width:100%;
}

.admin-mod {
	margin-top:10px;
	font-family: var(--main-font);
    color: var(--color-main);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.2em;	
}

.admin-mod a {
	color: var(--color-accent1);
	text-decoration:none;
}
.admin-mod a:hover {
	color: var(--color-main);
	text-decoration:none;
}



.nav-right {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 5px;
  bottom: 30px;       /* 30px above bottom */
  align-items: center;
  gap: 8px;
}

.nav-right a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--color-accent1);
    padding: 5px;
 	transition: color 1s ease-in-out;

}
.nav-right a:hover {
    color: var(--color-main);
}

.nav-right button {
    border: none;
    background: none; /* Optional: Removes background if needed */
    outline: none; /* Optional: Removes focus outline */
}

.nav-right button:hover {
    border: none;
    background: none; /* Optional: Removes background if needed */
    outline: none; /* Optional: Removes focus outline */
	    color: var(--color-accent1);

}


/**********************************
    Drop Down
**********************************/

input[name="nav-dropdown"] {
  display: none;
}
#ucp-dropdown:checked ~ .ucp-dropdown{
  top: 35px;
  left: 36px;
}
#list-sidebar:checked ~ .list-sidebar {
  left: 36px;
}

#acc-switcher:checked ~ .acc-switcher {
  left: 36px;
}

#sidebar-toggle:checked ~ .nav-switcher {
    right: 36;
}


.acc-switcher {
  position: fixed;
  top: 35px;
  left: -100%;
  height: calc(100vh - (35px*2));
  overflow: auto;
  padding: 20px 30px;
  background: var(--div-bg);
  transition: left 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-transform: uppercase;
  min-width:300px;
}



.ucp-dropdown {
  position: fixed;
  top: -50vh;
  left: 36px;
  width: calc(100% - (var(--frame)*2) - 2px);
  height: 35vh;
  overflow: auto;
background: var(--color-bg-transparent-dark);
  transition: top 0.5s ease;
}

/* If More Columns are Added */
@media screen and (min-width: 768px) {
  .ucp-dropdown-content {
    grid-template-columns: auto auto auto; /* Add additional columns dynamically */
  }
}

/* Default Layout (Desktop, 900px and Above) */
.ucp-dropdown-content {
  display: grid;
  grid-template-columns: auto auto auto; /* Avatar + Two Columns (or more) */
  grid-gap: 50px; /* Space between columns */
  justify-content: start; /* Align grid items to the left */
  align-items: start; /* Align items to the top */
  width: auto; /* Adjust container width to content */
  padding: 40px; /* Internal spacing */
  box-sizing: border-box; /* Include padding in width calculations */
  text-align: left; /* Ensure all text aligns to the left */
}


/* Avatar Column Styling */
.user-ava {
  max-width: 200px; /* Constrain avatar size */
  width: auto; /* Ensure avatar adjusts to its content */
  margin: 0; /* Remove centering margin */
  text-align: left; /* Align avatar content to the left */
}

/* Grid Items */
.ucp-dropdown-content-item {
  margin: 0;
  padding: 0;
  text-align: left; /* Align content inside grid items to the left */
  box-sizing: border-box; /* Include padding/margin in width calculations */
  justify-self: start; /* Align grid item itself to the left */
  align-self: start; /* Align grid item to the top */
}

/* Adjust Titles and Lists */
.ucp-dropdown-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: left;
  margin: 0;
  padding: 0 0 10px 0;
}

.ucp-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.ucp-dropdown-list li {
  font-size: 16px;
  margin: 5px 0;
  font-style: italic;
  text-align: left;
}


/* Ordered Lists */
.ucp-dropdown-content-item ol {
  margin: 0;
  padding: 0;
  list-style: none; /* Remove bullet points */
  counter-reset: mnum; /* Reset numbering */
  text-align: left; /* Align ordered lists to the left */
}

.ucp-dropdown-content-item ol li:before {
  content: "00" counter(mnum) ". "; /* Add custom numbering */
  color: var(--color-main); /* Use main color */
}

.ucp-dropdown-content-item ol li {
  font: 500 10px / 25px var(--main-font); /* Adjust font */
  letter-spacing: 2px; /* Add spacing */
  text-transform: uppercase; /* Transform to uppercase */
  color: var(--color-main); /* Use main color */
  counter-increment: mnum; /* Increment the counter */
  text-align: left; /* Align list items to the left */
}

.ucp-dropdown-content-item ol:before {
  content: attr(name); /* Use "name" attribute for section titles */
  margin: 0;
  padding: 0;
  font: 700 11px var(--main-font); /* Adjust font */
  display: block;
  letter-spacing: 2px; /* Add spacing */
  margin-bottom: 25px; /* Add spacing below */
  text-transform: uppercase; /* Transform to uppercase */
  color: var(--color-main); /* Use main color */
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-main); /* Add underline */
  text-align: left; /* Align section titles to the left */
}



/* Mobile Layout (Screens 900px and Smaller) */
@media screen and (max-width: 900px) {
  .ucp-dropdown-content {
    display: grid;
    grid-gap: 20px; /* Space between columns */
    width: 100%; /* Full width for smaller screens */
    padding: 20px; /* Adjust padding for smaller screens */
    margin: 0; /* No centering margins */
    box-sizing: border-box; /* Include padding in width calculations */
  }

  /* Hide Avatar on Mobile */
  .user-ava {
    display: none; /* Completely hide the avatar */
  }

  .ucp-dropdown-content-item {
    margin: 0;
    padding: 0;
    text-align: left; /* Align content to the left */
    justify-self: stretch; /* Stretch items to occupy full column width */
    align-self: stretch; /* Align items to fill available space */
  }
}

/* If More Columns are Added (Only for Screens 1200px and Larger) */
@media screen and (min-width: 1200px) {
  .ucp-dropdown-content {
    grid-template-columns: auto auto auto auto; /* Add an extra column */
  }
}

label {
  cursor: pointer;
  transition: filter 0.3s ease;
  color: var(--color-main);
  position: relative;
  text-decoration: none;
}

label::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: var(--color-main);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

label:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

label:hover {
	  color: var(--color-accent2);
	  cursor: pointer;
	transition: 1s ease-in-out;
}




.list-sidebar {
  position: fixed;
  top: 35px;
  height: calc(100vh - (35px*2));
  overflow: auto;
  padding: 20px 30px;
  background: var(--div-bg)
  transition: left 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-transform: uppercase;
  min-width:300px;
}


/**********************************
    User Settings
**********************************/


.user-ava {
	background: #444;
	height: 180px;
	aspect-ratio: 1/1;
	outline: 1px solid var(--medium);
	outline-offset: 10px;
	position: relative;
}

/* Transition for the overlay */
.user-ava:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-accent1);
	z-index: 1;
	mix-blend-mode: multiply;
	transition: opacity 0.3s ease; /* Add transition for opacity */
}

.user-ava:hover:before {
	opacity: 0.5; /* Show the overlay on hover */
}

/* Transition for the image */
.user-ava img {
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	transition: filter 0.3s ease; /* Add transition for filter */
}

.user-ava:hover img {
	filter: grayscale(0%); /* Remove grayscale on hover */
}

.content-box {
  display: flex;
  justify-content: space-between;
  width: 100%; /* Je nach Bedarf anpassen */
}

.section {
  padding: 0 38px; 
}

.section h3 {
  margin: 0 0 10px 0;
  font-family: var(--main-font);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.section h3:before {
  left: -50px;
}

.section h3:after {
  right: -50px;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section ul li {
  font-family: var(--main-font);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  display:flex;
}

.section ul li span {
  font-weight: bold;
  margin-right: 10px;
}

/**********************************
    Nav right Side
**********************************/

/* Hauptcontainer */

/* Hauptcontainer */
.nav-container {
  display: flex; /* Elemente horizontal anordnen */
  align-items: center; /* Vertikale Zentrierung */
  justify-content: space-between; /* Linke und rechte Navigation trennen */
  width: 2110px; /* Container über die gesamte Breite */
  padding: 0; /* Kein Padding */
  box-sizing: border-box; /* Padding/Margin wird in die Größe einbezogen */
  position: relative; /* Für absolute Positionierung der Inhalte */
}

/* Linke Navigation (Willkommensblock) */
.welcomeblock {
  display: flex; /* Flexbox für Inhalte */
  align-items: center; /* Vertikale Zentrierung */
}

 /* Header Navigation */
.header_nav_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 8px;
    right: 0;
    padding-right: 35px;
    width: auto;
    height: var(--navheight);
    font-family: var(--main-font);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 0.2em;
    z-index: 999;
}

        .header_nav_right .nav-link {
            margin-left: 20px;
            cursor: pointer;
            color: var(--color-main);
        }

       .nav-link a {
  cursor: pointer;
  transition: filter 0.3s ease;
  color: var(--color-main);
  position: relative;
  text-decoration: none;
}

.nav-link a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: var(--color-main);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

.nav-link a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-link a:hover {
  color: var(--color-accent2);
  cursor: pointer;
  transition: 1s ease-in-out;
}

        .header_nav_right .nav-link label {
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--color-main);
            opacity: 0.8;
            padding: 3px 0;
            display: inline-block;
            position: relative;
        }

        .header_nav_right .nav-link label:hover {
            color: var(--color-accent2);
            opacity: 1;
        }
        /* Radio Buttons verstecken */
        input[type="radio"] {
            display: none;
        }

        /* Sidebar */
.sidebar {
            position: fixed;
            top: 35px;
            right: -100%;
            width: 300px;
            height: calc(94.5vh);
            overflow: auto;
            padding: 20px 30px;
            background: var(--div-bg);
            transition: right 0.5s ease;
            display: flex;
            flex-direction: column;
            gap: 18px;
            text-transform: uppercase;
            z-index: 500;
        }

        /* Sidebar geöffnet */
        #sidebar-toggle:checked ~ .sidebar {
            right: 36px; /* Leave 35px space for the right frame */
        }

        /* Navigation Sections */
        .nav-section {
            margin-bottom: 25px;
        }

        .nav-title {
            background: var(--color-accent1);
            color: var(--color-main);
            padding: 6px 12px;
            font-size: 12px;
            margin-bottom: 15px;
            display: inline-block;
            width: fit-content;
            font-family: var(--main-font);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .sidebar ol {
            padding-left: 0;
            margin: 0;
            list-style: none;
        }

        .sidebar ol li {
            list-style: none;
            margin-bottom: 5px;
        }

        .sidebar ol li a {
            padding: 8px 0;
            font-size: 12px;
            color: var(--color-main);
            text-decoration: none;
            text-transform: uppercase;
            font-family: var(--main-font);
            font-weight: 500;
            letter-spacing: 0.8px;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0.8;
            display: inline-block;
        }

        .sidebar ol li a::before {
            content: "+ ";
            font-weight: 700;
            color: var(--color-accent1);
            margin-right: 5px;
            transition: all 0.3s ease;
        }

        .sidebar ol li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-accent1);
            transition: width 0.3s ease;
        }

        .sidebar ol li a:hover {
            color: var(--color-accent2);
            opacity: 1;
            transform: translateX(3px);
        }

        .sidebar ol li a:hover::after {
            width: 100%;
        }

        .sidebar ol li a:hover::before {
            transform: rotate(45deg);
        }
/**********************************
    Breadcrumb
**********************************/

.breadcrumb-navigation {
    position: absolute;
    right: 0px;
    bottom: 10px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-main);
    font-family: var(--main-font);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    line-height
}
.breadcrumb-navigation a {
	color: var(--color-main);
	text-decoration: none;
	transition: color 1s ease-in-out;
}

.breadcrumb-navigation a:hover {
	color: var(--color-accent2);
	cursor: pointer;
}
