.tags-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tag-input-group .tag-badge {
  margin: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: #a74f13 !important; /* Ensuring override with !important */
  color: #fff;
  border-radius: 0.25rem;
}
.tag-input-group {
  width: 100%;
  max-width: 500px;
  min-width: 300px;
  margin-bottom: 1rem;
}

.tag-input-group .input-group {
  width: 70%; /* Set the input width to 70% */
  margin-left: auto;
  margin-right: auto;
  border-top-right-radius: 0% !important;
  border-bottom-right-radius: 0% !important;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0.5rem;
}

/* .clear-tags {
  cursor: pointer;
  border: none;
  background: none;
} */

.tag-badge .bi-x-circle {
  margin-left: 0.5rem; /* Add left margin to the remove icon */
}

.tag-badge {
  margin: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  background-color: var(--bs-primary); /* Uses the primary color variable from Bootstrap 5 */
  color: #fff;
  border-radius: 0.25rem;
}

/* For buttons */
.btn {
  border-radius: 0.5rem !important; /* Use !important to ensure override */
}

/* For input fields */
.form-control {
  border-radius: 0.5rem !important;

  border-top-right-radius: 0% !important;
  border-bottom-right-radius: 0% !important;
}

.btn-outline-secondary {
  border-top-left-radius: 0% !important;
  border-bottom-left-radius: 0% !important;
}

a:hover {
  cursor: pointer;
}
/* styles for on small screens */
@media (max-width: 576px) {
  #ai-model {
    margin-top: 20px; /* Add some space between the AI Model button and the bottom above*/
  }
}

/* For cards */
.card {
  border-radius: 1rem !important; /* Use !important to ensure override */
}

/* Larger thumb styles */
input[type="range"]::-webkit-slider-thumb {
  /* -webkit-appearance: none; */
  width: 25px; /* Larger thumb width */
  height: 25px; /* Larger thumb height */
  transform: translateY(-5px);
}

input[type="range"]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  transform: translateY(-8px);
}

input[type="range"]::-ms-thumb {
  width: 30px;
  height: 30px;
  transform: translateY(-8px);
}
