body, .menu-link, .menu-sub .menu-link {
    font-family: -apple-system, "system-ui", Inter, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(54, 64, 79);
    line-height: 24px;
  }
  .form-control, .btn {
    width: 100%;
    text-align: left;
  }
  .layout-wrapper {
    background-color: #fff;
  }
  .fixed-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .fixed-menu-bar .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
  }
  .fixed-menu-bar .nav-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    white-space: nowrap;
  }
  .fixed-menu-bar .nav-link {
    display: flex;
    align-items: center;
    color: #fff; /* White color for the fixed menu text */
    font-weight: bold; /* Bold text for the fixed menu */
  }
  .fixed-menu-bar .nav-link span {
    margin-right: 5px;
  }
  .fixed-menu-bar .nav-item:last-child {
    margin-right: 0;
  }
  .fixed-menu-bar .fw-semibold {
    margin-right: 10px;
    color: #fff; /* White color for the fixed menu text */
    font-weight: bold; /* Bold text for the fixed menu */
  }
  .navbar-nav-right {
    display: flex;
    align-items: center;
    width: 100%; /* Added to make the background color span the entire width */
  }
  .search-box {
    margin-left: 10px;
    width: 400px; /* Increased width of the search box */
  }
  .right-container {
    display: flex;
    align-items: center;
  }
  .right-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .menu-icon {
    font-size: 0.9rem;
    background: linear-gradient(45deg, #6a6cff, #14a44d, #6a6cff, #0bba2b, #bc0936);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .menu-sub .menu-icon {
    font-size: 0.8rem;
  }
  .menu-sub .menu-item {
    list-style: none;
  }
  .menu-sub .menu-link {
    padding-left: 2.5rem;
  }
  .menu-inner ul {
    list-style: none;
  }
  .menu-sub {
    padding-left: 0;
  }
  .menu-sub .menu-link::before {
    content: '';
    margin-right: 0.5rem;
  }
  .menu-sub {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
  }
  .menu-item.open .menu-sub {
    max-height: 1000px;
    opacity: 1;
  }
  .menu-sub .menu-link.active {
    background-color: #a8d5a2;
  }
  .layout-menu-inner {
    overflow-y: auto;
    max-height: calc(100vh - 64px); /* Adjust based on your layout */
  }
  .menu-item.menu-toggle > .menu-link {
    padding-right: 20px; /* Add padding to the right to make space for the icon */
    position: relative; /* Required for positioning the icon */
  }

  .menu-item.menu-toggle > .menu-link:after {
    content: '\f054'; /* Font Awesome right arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute; /* Position the icon absolutely */
    right: 10px; /* Position the icon to the far right */
    top: 50%; /* Center the icon vertically */
    transform: translateY(-50%); /* Center the icon vertically */
    transition: transform 0.3s ease; /* Transition for smooth rotation */
    font-size: 0.75rem; /* Adjust this value to make the icon smaller */
  }

  .menu-item.open > .menu-link:after {
    transform: translateY(-50%) rotate(90deg); /* Rotate the icon 90 degrees when the menu is open */
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
  }

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

  .list-group-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
  }
  /* Background color for the navbar title of the deashboard layout */
  .bg-navbar-theme {
      background-color: #0A7075 !important;
  }

  .fixed-menu-bar {
      
      padding: 5px 10px; /* Reduced top and bottom padding */
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
  }

  /* Increase search box height */
  .search-box .form-control {
      height: calc(100% + 5%);
  }

  /* Change font color of the values to deep orange */
  .fixed-menu-bar .value-text {
      color: hsl(13, 100%, 50%); /* Deep orange color */
      font-weight: bold; /* Make the text bold */
  }
  .app-brand-text {
      color: rgb(4, 1, 1) !important;
      background-color: #f8fafb; /* Background color */
      padding: 5px 30px; /* Optional: add padding for better appearance */
      border-radius: 5px; /* Optional: add border-radius for rounded corners */
  }
  .menu-link:hover,
  .menu-sub .menu-link:hover {
    color: #007d8a;
  }

  .custom-modal-header {
      background-color: #027d8a;
      color: white;
  }

  .custom-modal-header .modal-title {
      color: white;
      font-size: 1.5rem; /* H2 size */
  }

  .modal-body h4 {
      font-size: 1.25rem; /* H4 size */
      margin-bottom: 20px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-control {
      padding-left: 15px;
      padding-right: 15px;
  }

  .custom-btn {
      background-color: #027d8a;
      color: white;
      width: 100%;
  }

  .option-hover {
  transition: background-color 0.3s, transform 0.2s;
}

.option-hover:hover {
  background-color: #f1f1f1;
  transform: scale(1.02);
}

.help-icon {
  transition: color 0.3s;
}

.help-icon:hover {
  color: #007bff;
  cursor: pointer;
}










/* .............Page loader started after body...............////....*/

/* Page loader container */
.loader-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9); /* White background with transparency */
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}

/* Progress container */
#progress-container {
width: 80%;
max-width: 600px;
height: 20px;
background: #ddd;
border-radius: 5px;
overflow: hidden;
}

/* Progress bar */
#progress-bar {
height: 100%;
width: 0;
background: #027d8a; /* Green color for progress bar */
transition: width 0.3s;
}

/* Rocket Icon from Font Awesome */
.rocket-icon {
font-size: 30px;
color: #007bff; /* Blue color for the rocket icon */
animation: float 2s ease-in-out infinite;
}

      /* ..................Page loader started after body...............////...............*/

/* Modal Styling */
.modal-content {
  background: linear-gradient(to right, #ffffff, #f0f4f8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Quill Editor Without Toolbar */
#quillOriginal .ql-container,
#quillTranslation .ql-container {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  height: 100%; /* Ensure full height inside container */
}

.ql-toolbar {
  display: none; /* Hide toolbar */
}

/* Spinner Styling */
.spinner-border {
  width: 1.5rem;
  height: 1.5rem;
}

.d-flex .spinner-border {
  display: inline-block;
  vertical-align: middle;
}

#loadingSpinner {
  display: inline-block;
  vertical-align: middle;
}