body {
  font-family: 'Cairo', 'Tajawal', 'Arial', sans-serif;
  background-color: #f8f9fa;
  /*color: #2c3e50;*/
  transition: all 0.3s ease-in-out;
}

.sidebar {
  width: 300px;
  height: 100vh;
  background-color: #27ceb0;
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1040;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar.show {
  transform: translateX(0);
}

.sidebar .nav-link {
  /*color: #f1f1f1;*/
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.sidebar .nav-link:hover {
  background-color: #FEE600;
  color: #26d5b6 !important;
  font-weight: 600;
  /*transform: translateX(4px);*/
}

.sidebar ul.nav {
  padding-right: 0;
}

.sidebar .submenu {
  /*padding-right: 20px;*/
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  margin-top: 5px;
  margin-bottom: 10px;
  background-color: rgba(226,220,215,0.39);
  border-radius: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  /*color: black;*/
}

.sidebar .submenu.show {
  max-height: 700px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar .submenu a.nav-link {
  font-size: 14px;
  padding: 6px 12px;
  margin-right: 5px;
  color: #dcdcdc;
}

.sidebar .submenu a.nav-link:hover {
  color: #26d5b6;
  background-color: #FEE600;
  border-radius: 4px;
}

.main-wrapper {
  transition: margin-left 0.3s ease-in-out;
}

.main-wrapper.shifted {
  margin-left: 300px;
}

.navbar-custom {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-btn {
  width: 45px;
  height: 45px;
  border: none;
  background-color: #26d5b6;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-area {
  position: relative;
}

.profile-area img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.profile-dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  width: 170px;
  border-radius: 5px;
  display: none;
  z-index: 2000;
  box-shadow: 0 0 10px #00000022;
}

.profile-dropdown.show {
  display: block;
}

.profile-dropdown a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.profile-dropdown a:hover {
  background-color: #f1f1f1;
}

.content {
  padding: 20px;
}

.listitemdata {
  padding: 0px;
}

.customcolor {
  color: white;
  font-weight: bold;
  text-align: left;
}

.sidebar .nav-link:hover span {
  color: #26d5b6;
}

.sidebar .nav-link:hover svg {
  color: #26d5b6;
}

