  .custom-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
  }
  
  .tooltip-icon {
    color: #6c757d;
    cursor: help;
    font-size: 16px;
  }
  
  .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    z-index: 99999;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
  }
  
  .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }
  
  .custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }


  .btn-custom-primary:hover {
    background: #E85D0C !important;
  }

  .text-custom-secondary {
    color: #E85D0C !important;
  }

  .btn-custom-login-primary {
    background: #E85D0C !important;
    color: #fff !important;
  }

  .btn-custom-login-primary:hover {
    background: rgba(232, 93, 12, 0.8) !important; /* Reduced opacity for dimming effect */
    color: #fff !important;
  }

  [data-pc-preset=preset-1] .pc-sidebar .pc-submenu .pc-item:hover:before, [data-pc-preset=preset-1] .pc-sidebar .pc-submenu .pc-item.active:before {
    background: #E85D0C !important;
}


.pc-head-link.head-link-primary.dropdown-toggle.arrow-none.me-0.bg-brand-secondary:hover .ti-settings {
  color: #333333 !important; /* Sets the cog icon color to black when the parent is hovered */
}