@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.sidebar1 {
  position: fixed;
  height: 100%;
  width: 285px;
  background: #11101d;
  padding: 15px;
  z-index: 99;

  transition: left 0.3s ease;

  /* Hide scrollbar for Chrome, Safari, and Opera */
  ::-webkit-scrollbar {
    width: 0px; /* Make scrollbar transparent */
  }

  /* Hide scrollbar for IE, Edge, and Firefox */
  scrollbar-width: none; /* For Firefox */
}

.sidebar1:hover {
  /* Optional: Change scrollbar color on hover for better UX */
  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5); /* Light grey */
  }
}
.user-info {
margin-top: 100px;
}
.sidebar1 .user-info {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
}
.sidebar1 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}


.logo {
  font-size: 25px;
  padding: 0 15px;
}

.sidebar1 a {
  color: #fff;
  text-decoration: none;
}

.menu-content {

  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 40px;
}
.content2 {
  padding-top: 50px;
}
.myPaddingClass {
    padding: 20px;
}

.menu-items {
  list-style: none;
  transition: all 0.4s ease;
}

.submenu-active .menu-items {
  transform: translateX(-60%);
}

.menu-title {
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}

.item a,
.submenu-item {
  padding: 16px;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
}

.item i {
  font-size: 12px;
}

.item a:hover,
.submenu-item:hover,
.submenu .menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
}

.submenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.submenu {
  position: absolute;
  width: 100%;
  top: 0;
  right: calc(-100% - 26px);
  height: calc(100% + 100vh);
  background: #11101d;
  display: none;
}

.show-submenu ~ .submenu {
  display: block;
}

.submenu .menu-title {
  border-radius: 12px;
  cursor: pointer;
}

.submenu .menu-title i {
  margin-right: 10px;
}

.navbar1 {
  position: fixed;
  top: 0;
  left: 284px;
  width: calc(100% - 260px);
  color: #fff;
  padding: 15px 20px;
  font-size: 25px;
  background: #4070f4;
  cursor: pointer;
  z-index: 1001;
  transition: left 0.3s ease, width 0.3s ease;
}

.navbar1 #sidebar1-close {
  cursor: pointer;
}

.main {
  position: relative;
  margin-left: 260px;
  width: calc(100% - 260px);
  padding: 20px;
  overflow-y: auto;
  transition: margin-left 0.3s ease, width 0.3s ease;
}

.main h1 {
  color: #11101d;
  font-size: 40px;
  text-align: center;
  padding-top: 10px;
}
.sidebar1.close {
  left: -285px; /* Adjust this to hide the sidebar off-screen */
}


.sidebar1.close ~ .navbar1 {
  left: 0;
  width: 100%;
}

.sidebar1.close ~ .main {
  margin-left: 0;
  width: 100%;
}

form {
  width: 100%;
  max-width: 2000px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.container .header h2 {
  margin: 0;
}
.btn-primary {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #0056b3;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.table th {
  background-color: #f2f2f2;
}
.table-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}
.status-active {
  color: white;
  background-color: green;
  padding: 2px 8px;
  border-radius: 12px;
}
.status-onboarding {
  color: white;
  background-color: blue;
  padding: 2px 8px;
  border-radius: 12px;
}
.status-awaiting {
  color: white;
  background-color: goldenrod;
  padding: 2px 8px;
  border-radius: 12px;
}
.btn-link {
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  text-decoration: underline;
}





@media (max-width: 768px) {
  .sidebar1 {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: -100%;
  }

  .sidebar1.open {
    left: 0;
  }

  .navbar1 {
    left: 0;
    width: 100%;
  }

  .main {
    margin-left: 0;
    width: 100%;
  }



  .navbar1 #sidebar1-close {
    display: block;
  }


}



.sidebar1.close {
  left: -285px; /* Adjust this to hide the sidebar1 off-screen */
}

@media (max-width: 768px) {
  .sidebar1.close {
    left: 0; /* Adjust this to hide the sidebar1 off-screen */

  }
}

.logout-container {
    margin-bottom: 0px;
    text-align: center;
}

.logout-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.logout-container img {
    margin-right: 10px; /* Optional: Add margin if there's an image */
}

.logout-container a i {
    margin-right: 8px; /* Add space between icon and text */
}







