
body {
    background-color: #fbfbfb;
  }
  @media (min-width: 991.98px) {
    main {
      padding-left: 280px;
    }
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 0px 0 0; /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 280px;
    z-index: 600;
  }
  
  @media (max-width: 991.98px) {
    .sidebar {
      width: 100%;
    }
  }
  .sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  }
  
  .sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  }
/* CSS for password strength meter */
.password-meter {
    display: flex;
    justify-content: space-between;
}

.meter-section {
    flex-grow: 1;
    height: 8px;
    background-color: #e0e0e0;
}

.password-meter .meter-section {
    background-color: #e0e0e0; /* domyślny kolor tła */
}

.password-meter .meter-section.weak {
    background-color: red;
}

.password-meter .meter-section.medium {
    background-color: orange;
}

.password-meter .meter-section.strong {
    background-color: green;
}

.password-meter .meter-section.very-strong {
    background-color: darkgreen;
}


h2 strong {color:#000}

.navbar-brand {
    padding-left: 15px;
}

.sidebar .nav-link {
    color: #333;
}

.sidebar .nav-link.active {
    color: #007bff;
}

.sidebar .nav-link:hover {
    color: #0056b3;
}

.sidebar .nav-item {
    margin-bottom: 1rem;
}

.container-custom {
    max-width:2400px;
    font-size:0.8em;
}
.container-custom input {
  font-size:1em;
}


.submenu {
    display: none;
    padding-left: 20px;
  }

  .submenu-visible {
    display: block !important;
  }

  .fixed-top-custom {
    position:fixed;
    top:0;right:0;
    left:280px;
    z-index: 530;
  }

  
  #error strong {color:#000;font-size:26em!important;}

  .fs-3 {font-size:1.233em!important;}

  .rl-noborder {
    border-left: 0!important;
    border-right: 0!important;
  }



  @media (max-width: 991px)  {

    .fixed-top-custom {
      position:fixed;
      top:0;right:0;
      left:0;
    }
    
  }

  @media (min-width: 768px) {
    .max-w-md-350px {
      max-width: 350px !important;
    }
    .max-w-md-550px {
      max-width: 550px !important;
    }
    .mw-65px {
      max-width: 65px !important;
    }
  }