/* =======================================================================
  Sidebar
========================================================================== */



/* Gesamter Container (Breite, Padding etc.) */

.sidebar {
  width: var(--size-sidebar-width);
  padding: 1rem;
  transition: transform 0.3s ease;
}



/* =======================================================================
  Boxen 
========================================================================== */

/* Gesamte Box */

.menu-left-box-wrap {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-left-box-head {
  background-color: #001d3b;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 0.6rem;
  border-bottom: 1px solid #ccc;
}

/* Links */
/* Für untereinanderstehende Links*/
.menu-left-box-links-wrap {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}


.menu-left-box-links-wrap a {
  color: #001d3b;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-left-box-links-wrap a:hover {
  background-color: #2076b4;
  color: white;
  border-radius: 3px;
}