/*
.login-wrapper {
  display: none;
}
*/

/* Overwrite for dashboard wrap - all children 
.dashboard-wrapper * {
   font-size: 1.6rem;
}
*/

.brxe-social-icons li, .brxe-social-icons li {
    justify-content: start;
  }

/* Notification bubble for sidebar */
.bm-notification-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.6rem;
  background-color: var(--bm-success);
  color: white;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

[data-sidebar-item="bewerbungen"] {
  position: relative;
}
  
.dashboard-sidebar {
    overflow-y: auto;
    max-height: 100vh;
  /*hiding scrollbars: */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .dashboard-sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .sidebar-item:hover {
    background-color: #F3F5F7;
  }
  
  /* Default state for all active items */
  .sidebar-item[aria-current="page"] {
    background-color: #F3F5F7;
  }

  /* displaying tooltips */
  [data-tooltip] {
    position: relative;
    cursor: pointer;
    z-index: 999;
  }
  
  [data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;  /* Changed from 'bottom: 100%' to 'top: 100%' */
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    margin-top: 5px;  /* Added a small margin to create some space between icon and tooltip */
  }
  
  [data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
  }
  
  