/* 
.custom-scrollbar::-webkit-scrollbar {
  width: 15px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(72, 73, 75); 
  border-radius: 10px;
  border: 3px solid #ffffff; 
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgb(72, 73, 75); 
}
.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #f3f4f6; 
  border-radius: 10px;
}

.main-div {
  background: #1d2327;
  color: #e5e7eb;
  font-family: "Arial", sans-serif;
  background-position: right;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.chat-scroll {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #a78bfa #1f2937;
}

.chat-scroll::-webkit-scrollbar {
  width: 8px;
}

.chat-scroll::-webkit-scrollbar-thumb {
  background-color: #a78bfa;
  border-radius: 4px;
}

.gradient-bubble {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-purple {
  background: linear-gradient(135deg, #9b4dca 0%, #7b2cbf 100%);
}

.btn-purple:hover {
  background: linear-gradient(135deg, #7b2cbf 0%, #9b4dca 100%);
}

#screen-meta,
#submitdiv,
#titlediv,
h1.wp-heading-inline,
#side-sortables,
#screen-meta-links,
#notice,
.wrap>a,
.wrap>hr,
.postbox-header {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.tts-btn {
  color: rgba(255, 255, 255, 10); 

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 1s ease-out;
}

.automatic-spinner {
  width: 48px !important;
  height: 48px !important;
  background: url('../img/automatic-icon.gif') center / 100% 100% no-repeat;
} */




/* Custom scrollbar styles for chatbot */
.custom-scrollbar::-webkit-scrollbar {
  width: 15px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(72, 73, 75); /* Friendly green color */
  border-radius: 10px;
  border: 3px solid #ffffff; /* Adding white border for better visibility */
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgb(72, 73, 75); /* Darker green for hover effect */
}
.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #f3f4f6; /* Light gray track color */
  border-radius: 10px;
}

.main-div {
  background: #09090b;
  color: #e5e7eb;
  font-family: "Arial", sans-serif;
  background-position: right;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.chat-scroll {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #a78bfa #1f2937;
}

.chat-scroll::-webkit-scrollbar {
  width: 8px;
}

.chat-scroll::-webkit-scrollbar-thumb {
  background-color: #a78bfa;
  border-radius: 4px;
}

.gradient-bubble {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-purple {
  background: linear-gradient(135deg, #9b4dca 0%, #7b2cbf 100%);
}

.btn-purple:hover {
  background: linear-gradient(135deg, #7b2cbf 0%, #9b4dca 100%);
}

#screen-meta,
#submitdiv,
#titlediv,
h1.wp-heading-inline,
#side-sortables,
#screen-meta-links,
#notice,
.wrap>a,
.wrap>hr,
.postbox-header {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.tts-btn {
  color: rgba(255, 255, 255, 10); /* Fully transparent */
}

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 1s ease-out;
}

.automatic-spinner {
  width: 48px !important;
  height: 48px !important;
  background: url('../img/automatic-icon.gif') center / 100% 100% no-repeat;
}

.pro-pay-btn {
  background-color: #7e22ce; /* Purple */
  width: 100%;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pro-pay-btn:hover {
  background-color: #6b21a8; /* Darker purple */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.3);
}

.standard-pay-btn {
  background-color: #2563eb; /* Blue */
  width: 100%;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.standard-pay-btn:hover {
  background-color: #1d4ed8; /* Darker blue */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

      .help-container {
        position: relative;
        display: inline-block;
      }



    /* Tooltip styles */
    .tooltip {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgb(10, 3, 39);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        min-width: 400px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 10px;
    }

    /* Tooltip arrow */
    .tooltip::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgb(10, 3, 39);
    }

    /* Show tooltip on hover */
    .help-container:hover .tooltip,
    .help-container:focus-within .tooltip {
        opacity: 1;
        visibility: visible;
    }
    .help-icon { 
      font-size: 30px;
      padding-top: 0px;    
    }

    /* Optional: Add hover effect to the icon itself */
    .help-icon:hover {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }


.audience-taxonomies-container {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.taxonomy-list {
    list-style: none;
    padding-left: 0;
}

.taxonomy-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}