:root {
  --primary-color: #5A0F61;
  --secondary-color: #FFA8A7;
  --background-color: #F9F9F9;
  --text-color: #333;
  --sidebar-width: 256px;
  --transition-duration: 0.3s;
}
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  --toast-duration: 5s;

}
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
  }

/* Content wrapper shifts right when sidebar is visible */
#content-wrapper {
  margin-left: 256px; /* Sidebar width */
  transition: margin-left 0.3s ease;

  
}
#current-date{
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  #content-wrapper {
margin-top: 90px !important;
  }
  #content-wrapper.sidebar-hidden {
    margin-top: 10px !important;

  }
}
@media screen and (max-width: 500px) {
  #content-wrapper {
margin-top: 150px !important;
  }
  #content-wrapper.sidebar-hidden {
    margin-top: 10px !important;

  }
}

#content-wrapper.sidebar-hidden {
  margin-left: 0;
}
.nav-item.active {
  background: linear-gradient(90deg, #5A0F61, #FFA8A7);
  border-radius: 10px;
  color: white !important;
  font-weight: bold;
  
}
.nav-item.active img {
  filter: invert(1) brightness(2); 
}
.nav-item.active .nav-link {
  color: #fff !important;
}
.nav-link {
  color: #000000;
  font-size: 16px;
    line-height: 1.2;
    padding: 0px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
  transition: background 0.3s, color 0.3s;
  align-items: center;
  gap: 8px;
  
}

.navbar-shrink {
  margin-left: 256px; 
   width: calc(100% - 256px);
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #000000!important;
  cursor: pointer;
}

.nav-item:hover {
  background-color: #f5f5f5;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
}
.nav-item{
    color: #444;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
}

.nav-link img {
  display: inline-block;
  margin-bottom: 2px;

} 
#sidebar-footer {
  background:linear-gradient(10deg, #5A0F611A, #3B82F61A);
  text-align: center;
  color: #4B5563;
  width: 256px; 
  height: 88px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}


.menu-btn {
  background-color: #FFFFFF;
  color: #5A0F61;
  border: none;
  font-size: 24px;
  border-radius: 5px;
  cursor: pointer;
padding-right: 20px;
}
#menu-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
/* Sidebar default style */
#sidebar {
  width: 256px;
 position: fixed;
  top: 0;
  left: 0;
  height: 680px;
  background-color: #fff;
  z-index: 4;
  transform: translateX(0%);
  transition: transform 0.3s ease;
overflow-y:scroll;
overflow-x: hidden;
}
#sidebar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
#sidebar::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Browsers for Now */
  width: 6px;
}
#sidebar.hidden {
  transform: translateX(-100%);
}

@media  (max-width: 768px) {
  #sidebar {
   position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    transition: left 0.3s ease-in-out;
    z-index: 1000;transform: translateX(-100%); /* hidden by default */
  }
  #logo {
    width: 120px; /* Adjust logo size for smaller screens */
    height: auto;
  }
   

  #sidebar.hidden {
    transform: translateX(-100%)!important; /* stay hidden */
  }

  #sidebar.visible {
    transform: translateX(0); /* slide in */
  }
}
  
  .menu-btn {
        height: auto;
    width: 40px; /* Adjust width for smaller screens */
    display: block; /* Show menu button on smaller screens */
  }
  
  .nav-link {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
  #btn {
    width: 25px; /* Adjust button size for smaller screens */
    height: 25px;
  }
  #sidebar-footer {
    width: 100%; /* Full width on smaller screens */
    height: auto; /* Adjust height for smaller screens */
    padding: 10px; /* Add padding for better spacing */
  }
  #notification-icon img{
    width: 20px; 
    height: 20px;
  display: inline-block;
  object-fit: contain;
  }
  #announcement-icon img{
  display: inline-block;
  height: 24px; 
  width: 24px;
  object-fit: contain;
  }
  #profile-img {
  display: inline-block;
  height: 40px; 
  width: 40px;
object-fit: cover;    margin-right: 0;
  }
  .nav-item{
    font-size: 14px; /* Adjust font size for smaller screens */
    display: flex;
    align-items: center;

  }
  .nav-item.active .nav-link {
  color: #fff !important;
  font-size: 14px !important ; /* Adjust font size for active link on smaller screens */
}
  


.logo {
    color: #5A0F61;
    font-size: 24px;
    font-weight: bold;
    /* Reset background clip and text fill for solid color */
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.logo .highlight {
    color: #FDBA74; /* Highlight color for 'u' and 'o' */
}
li{
  /* margin-left:20px;
  margin-right: 20px;
  margin-bottom: 10px; */
  min-height: 55px;
  width: 208px;
  padding-left: 8px;
}
 .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popup-box {
            display: flex;
            border-radius: 12px;
                        justify-content: center !important;

            padding: 20px;
            min-width: 10000px;
            width: 100%;
            height: 600px;
            animation: popup-fade 0.3s ease;
            position: relative;
            gap: 0;
        }


        /* .popup-img {
            width: auto;
            height: auto;
            position: relative;
            margin-right: -35px;
        } */

        .popup-content {
            display: flex;
            flex-direction: column !important;
            justify-content: center !important;
            background-color: #fff;
            border-radius: 12px;
            height: 300px;
            width: 400px;

        }

        .popup-content h2 {
            margin-top: 60px;
            margin-bottom: 18px;
            text-align: center !important;

        }

        .popup-content p {
            margin-bottom: 15px;
            padding-left: 10px;
            text-align: center;
        }

        .popup-content button {
            border: none;
            font-size: 20px;
            padding: 4px;
            padding-left: 10px;
            padding-right: 10px;
            margin-top: 10px;
            border-radius: 6px;
            margin-right: 10px;
            cursor: pointer;
        }

        .popup-content button.confirm {
            background-color: #F97316;
            color: white;

        }

        .popup-content button.confirm.no {
            background-color: white;
            color: #F97316;
            border: 1px solid #F97316;

        }

        .popup-content button.confirm.no:hover {
            background-color: #F97316;
            color: white;
            border: 1px solid #F97316;

        }

        .popup-content button.error {
            background-color: #dc3545;
            color: white;
        }

        .popup-box.error {
            background: #FEE2E266;

        }

        .popup-box.confirm {
            background: #FFF7ED66;

        }

        .popup-box.success {
            background: #94E9B84D;

        }

        .popup-box.loading {
            background: #4B556366;

        }

        .popup-content button:not(.confirm):not(.error) {
            background-color: #28a745;
            color: white;
        }

        .gradient-spinner {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: conic-gradient(#520e58, #7b1684, #ffffff 90%);
            mask: radial-gradient(farthest-side, transparent 75%, black 76%);
            -webkit-mask: radial-gradient(farthest-side, transparent 75%, black 76%);
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }


        @keyframes popup-fade {
            from {
                opacity: 0.4;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .button-row {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
.popup-icon{
  width: 60px; 
  height: 60px; 
  margin-bottom: -35px;
}
        @media (max-width: 768px) {
            .popup-box {
                flex-direction: row;
                height: 250px;
                width: 450px;
                padding: 15px;
            }
.popup-icon{
  width: 40px; 
  height: 40px; 
    margin-bottom: 3px;

}
            .popup-img {
                width: 60%;
                max-width: 200px;
                height: 200px;
                
            }

            .popup-box.confirm span {
                width: 40px !important;
                height: 40px !important;

            }

            .popup-box.confirm h2 {
                margin-top: 18px !important;

            }

            .popup-content button.confirm {
                font-size: 12px !important;

            }

            .popup-content {
                width: 100%;
                margin-top: 15px !important;
                margin-bottom: 15px !important;

                height: auto;
                padding: 15px;
                justify-content: center;
            }

            .popup-content h2 {
                margin-top: 6px;
                font-size: 18px;
            }

            .popup-content p {
             margin-top: 0 !important;

                font-size: 10px !important;
            }

            .popup-content button {
                font-size: 12px !important;
                margin-top: 0 !important;
            }

            .button-row {
                flex-direction: row;
            }

            .gradient-spinner {
                width: 30px;
                height: 30px;
            }
        }


 .custom-toast {
            position: fixed;
            z-index: 9999;
            top: 20px;
            right: 20px;
            width: 300px;
            background: white;
            border-radius: 8px;
            padding-bottom: 0;
            padding-right: 12px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            animation: fadeInto 0.3s ease forwards;
            overflow: hidden;

        }
        .custom-toast.fade-out {
  animation: fadeOutto 0.3s ease forwards;
}
       
        .custom-toast::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  background: radial-gradient(circle at left, transparent, white);
}
.custom-toast-success::before {
  background: radial-gradient(circle at left, rgba(82, 195, 108, 0.2), transparent);
}

.custom-toast-warning::before {
  background: radial-gradient(circle at left, rgba(255, 193, 7, 0.2), transparent);
}

.custom-toast-error::before {
  background: radial-gradient(circle at left, rgba(222, 84, 98, 0.2), transparent);
}

.custom-toast-info::before {
  background: radial-gradient(circle at left, rgba(163, 198, 250, 0.2), transparent);
}


        .toast-message {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            align-items: center;
            font-size: 14px;

        }
        .toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}


        .toast-icon img {
            width: 34px;
            height: 34px;
            padding-left: 12px;

        }

        .toast-content {
            display: flex;
            flex-direction: column;
        }

        .toast-bar {
            height: 5px;
            margin-top: 5px;
            animation: growto var(--toast-duration) linear forwards;
            border-radius: 2px;
        }

       .custom-toast.custom-toast-success  {
            background: radial-gradient(circle at 40px 30%, #e6f4ea 30px, #ffffff 150px);
        }

        .custom-toast.custom-toast-warning {
            background: radial-gradient(circle at 40px 30%, #fff9e6 30px, #ffffff 150px);
        }

       .custom-toast.custom-toast-error  {
            background: radial-gradient(circle at 40px 30%, #fbeaea 30px, #ffffff 150px);
        }

       .custom-toast.custom-toast-info  {
            background: radial-gradient(circle at 40px 30%, #e6f4f8 30px, #ffffff 150px);
        }

        .custom-toast-success .toast-bar {
            background: #01E17B;
        }

        .custom-toast-warning .toast-bar {
            background: #FFD21F;
        }

        .custom-toast-error .toast-bar {
            background: #F04349;
        }

        .custom-toast-info .toast-bar {
            background: #3B82F6;
        }

        .toast-header {
            font-weight: bold;
            padding: 6px 2px !important;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        .custom-toast-success .toast-header {
            color: #30D158;
        }

        .custom-toast-warning .toast-header {
            color: #FFC100;
        }

        .custom-toast-error .toast-header {
            color: #F04248;
        }

        .custom-toast-info .toast-header {
            color: #3B82F6;
        }

        .custom-toast-success .toast-text {
            color: #C8C5C5;
        }

        .custom-toast-warning .toast-text {
            color: #C8C5C5;
        }

        .custom-toast-error .toast-text {
            color: #C8C5C5;
        }

        .custom-toast-info .toast-text {
            color: #C8C5C5;
        }

        

        @keyframes growto {
            from {
                width: 0%;
            }

            to {
                width: 100%;
            }
        }

        @keyframes fadeInto {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         @keyframes fadeOutto {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
 .tw-hidden {
    display: none !important;
  }
.notification .badge {
  position: absolute;
  top: -6px;
  right: -12px;
  padding: 4px 8px;
  border-radius: 9999px;
  background: #EF4444;
  color: white;
}
.announcement .badge {
   position: absolute;
  top: -6px;
  right: -10px;
  padding: 4px 8px;
  border-radius: 9999px;
  background: #EF4444;
  color: white;
}




.notification-icon {
  color: purple;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 400;
  color: #000;
}

.notification-meta {
  color: #555;
  font-size: 13px;
}




.notifications-dropdown {
  position: absolute;
  top: 100%;
  right: 60px;
  width: 320px;
  max-height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;

  display: flex;
  flex-direction: column; /* Make children stack vertically */
  overflow: hidden; /* hide overflow outside */
}

.notifications-dropdown h4 {
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0; /* never shrink */
  background: #fff;
}

#notifications-list {
  flex: 1; /* take up remaining space */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
#notifications-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.notification-item {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.notification-item a {
  text-decoration: none;
}

.view-all-btn {
  width: 100%;
  padding: 10px;
  background-color: #5A0F61;
  color: white;
  border: none;
  border-radius: 0 0 10px 10px; /* rounded only at bottom */
  cursor: pointer;
  flex-shrink: 0; /* stay pinned */
}



.announcements-dropdown {
  position: absolute;
  top: 100%;
  right: 60px; 
  width: 350px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  overflow-y: scroll;
overflow-x: hidden;
}

.announcement-item {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}



.announcement-content {
  flex: 1;
}

.announcement-title {
  font-weight: 600;
  color: #000;
}

.announcement-meta {
  color: #555;
  font-size: 13px;
}

.view-all-btn {
  width: 100%;
  padding: 10px;
  background-color: #5A0F61;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}
#announcements-list{
height: fit-content;
overflow-y: scroll;
overflow-x: hidden;}
.announcement-item a{
  text-decoration: none;

}
.announcement-header{
  color: #5A0F61;
}
.announcement-date{
    color: #5A0F61;
    font-size: 14px;
background-color: #F5ECFE;
padding: 4px 8px;
border-radius: 6px;
}
        @media (max-width: 400px) {
          .notifications-dropdown {
            right: 10px;
          }
          .announcements-dropdown {
                        right: 10px;

          }
        }

.popup-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: rgba(255, 255, 255, 0.3);
  transition: width 5s linear;
    z-index: 0;
}

.popup-btn-text {
    position: relative;
    z-index: 1;
}

.collaplinkli{
  font-size: 13px;
  align-items: center !important;
  height: 50px;
  border-radius: 6px;
  padding-top: 15px;
  padding-left:42px;
  margin-bottom: 0;

}
.collaplink{
  text-decoration: none;
  color: #6C6C6C;
  align-items: center !important;

}
#accountCollapse{
  margin-top: -5px;

}
.collaplink:hover{
color:#5A0F61}

.collaplinkli.active a{
  color: #5A0F61;
  font-weight: bold;
  font-size: 14px;

}
.nav-link .fa-chevron-down {
  transition: transform 0.3s ease;
margin-left: 10px;}

.nav-link[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}



  @keyframes fadeOut {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        .fade-out {
            animation: fadeOut 1s ease-out forwards;
        }

        .hide-content {
            display: none;
        }

        .show-content {
            display: block;
        }

        #loadingScreen img {
            object-fit: cover;
            width: 100%;
            height: 100vh;
        }

        .spinner-layer {
            object-fit: contain;
            opacity: 0.4;
            pointer-events: none;
        }

        .spin-fast {
            animation: spin 0.9s linear infinite;
        }

        .reverse-spin {
            animation-direction: reverse;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

.fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}
#navbar-container{
  z-index: 4;
  
}

 /* Overlay */
    #loadingOverlay {
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999999;
    }

    /* Hide utility */
    .d-none {
      display: none !important;
    }

    /* Spinner container */
    .multi-spinner {
      position: relative;
      width: 128px; /* 8rem */
      height: 128px;
    }

    /* All spinner layers stacked */
    .spinner-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.4;
    }

    /* Animations */
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }
    @keyframes reverseSpin {
      100% { transform: rotate(-360deg); }
    }

    .spin-fast {
      animation: spin 1s linear infinite;
    }
    .reverse-spin {
      animation: reverseSpin 1s linear infinite;
    }


    .pending-pagination-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  display: inline-flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(80, 14, 88, 0.12);
  text-align: center;
}
.pending-page-btn {
  background: transparent;
  color: #7B1684;
  border: none;
  border-radius: 50%;
  padding: 8px 16px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.pending-page-btn.active {
  background: #fff;
  color: #7B1684;
  font-weight: 700;
}
.pending-page-btn.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #7B1684;
  border-radius: 50%;
}
.pending-page-btn:hover {
  background: #f3e6f9;
  color: #7B1684;
}

 .custom-select {
      position: relative;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: white;
      cursor: pointer;
      transition: all 0.2s;
      height: 44px;
    }

    .custom-select:hover {
      border-color: #5a0f61;
    }

    .custom-select.open {
      border-color: #5a0f61;
      box-shadow: 0 0 0 3px rgba(90, 15, 97, 0.1);
    }

    .custom-select-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      height: 100%;
    }

    .custom-select-placeholder {
      font-size: 0.9rem;
      color: #333;
    }

    .custom-select-trigger i {
      color: #999;
      font-size: 0.8rem;
      transition: transform 0.2s;
    }

    .custom-select.open .custom-select-trigger i {
      transform: rotate(180deg);
    }

    .custom-select-dropdown {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      z-index: 100;
      display: none;
      max-height: 200px;
      overflow-y: auto;
    }

    .custom-select.open .custom-select-dropdown {
      display: block;
    }

    .custom-select-option {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .custom-select-option:hover {
      background-color: #f5f5f5;
    }

    .custom-select-option.selected {
      background-color: rgba(90, 15, 97, 0.1);
      color: #5a0f61;
      font-weight: 500;
    }


.shadow{
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

#sidebar li{
  width: 100%;
  padding: 5px;
  padding-right: 0px;
}
#sidebar li#logoutBtn{
  padding-right: 10px;
}
#sidebar li a{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  text-decoration: none;
  font-family: Roboto, 'sans-serif';
  box-sizing: border-box;
  padding: 5px;
  min-height: 50px;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
  padding-right: 0px;
  white-space: nowrap;
}
#sidebar li#logoutBtn a{
  transition: none;
}
#sidebar li.has_active > a{
  font-weight: 500;
  color: var(--primary-color);
}
#sidebar li.active > a img{
  transform: rotate(180deg);
}
#sidebar li.active > ul{
  max-height: 5000px;
}
/* #sidebar li a:hover{
  background: linear-gradient(0deg, #520E58, #7B1684);
  color: white;
}
#sidebar li a:hover img{
  filter: brightness(0) invert(1);
} */

#sidebar li > ul{
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
#sidebar li > ul li{
  width: 100%;
  padding-right: 10px;
  box-sizing: border-box;
}
#sidebar li > ul li a{
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  transition: none;
}
#sidebar li > ul li a:hover{
  background: linear-gradient(0deg, #520E58, #7B1684);
  color: white;
}
#sidebar li > ul li a:hover img{
  filter: brightness(0) invert(1);
}
#sidebar li#logoutBtn a:hover{
  background: linear-gradient(0deg, #520E58, #7B1684);
  color: white;
}
#sidebar li#logoutBtn a:hover img{
  filter: brightness(0) invert(1);
}
#sidebar li > ul li a.active{
  background: linear-gradient(0deg, #520E58, #7B1684);
  color: white;
}
#sidebar li > ul li a.active img{
  filter: brightness(0) invert(1);
}
#sidebar li > ul li a div{
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#sidebar li > ul li a span{
  font-size: 12px;
  font-weight: 400;
  padding: 2px 16px;
  box-sizing: border-box;
  border-radius: 100px;
  width: 60px;
  text-align: center;
}
#sidebar li > ul li a span.sidebar-coming-soon-badge{
  background: #8C0DAB33;
  color: var(--primary-color);
}
#sidebar li > ul li a:hover span.sidebar-coming-soon-badge{
  background: #8C0DAB;
  color: white;
}
#sidebar li > ul li a span.sidebar-beta-badge{
  background: #F97316;
  color: white;
}
#sidebar li > ul li a span.sidebar-new-badge{
  background: #16A34A;
  color: white;
}
#sidebar li#logoutBtn a{
  justify-content: flex-start;
  padding: 10px;
}
#sidebar .user-card{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 1.85px 6.25px 0px rgba(0, 0, 0, 0.19), 0 0.5px 1.75px 0px rgba(0, 0, 0, 0.039);
  padding: 20px 10px;
  box-sizing: border-box;
  margin: 10px auto;
  width: calc(100% - 20px);
  border-radius: 8px;
  position: relative;
  min-height: 80px;
}
#sidebar .user-card div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#sidebar .user-card span:nth-child(1){
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}
#sidebar .user-card span:nth-child(2){
  color: #64748B;
  font-weight: 400;
  font-size: 12px;
}
#sidebar .user-card > span{
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 10px;
  color: var(--primary-color);
  font-weight: 500;
  box-shadow: 0 1.85px 6.25px 0px rgba(0, 0, 0, 0.19), 0 0.5px 1.75px 0px rgba(0, 0, 0, 0.039);
  border-radius: 8px;
  padding: 2px 15px;
  text-transform: capitalize;
}
#sidebar .ending-sidebar{
  background: linear-gradient(0deg, #5A0F611A, #3B82F61A);
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  user-select: none;
  margin-top: 10px;
}
#sidebar .ending-sidebar span:nth-child(1){
  font-family: Roboto, 'sans-serif';
  font-weight: 400;
  font-size: 24px;
  color: #020817;
}
#sidebar .ending-sidebar span:nth-child(2){
  font-family: Roboto, 'sans-serif';
  font-weight: 400;
  font-size: 12px;
  color: #4B5563;
}
  /* #sidebar li a:hover{
  background: linear-gradient(0deg, #520E58, #7B1684);
  color: white;
}
#sidebar li a:hover img{
  filter: brightness(0) invert(1);
} */
