.d-none {
  display: none !important;
}

/* Align text to the left */
.text-start {
  text-align: left;
}

/* Align text to the center */
.text-center {
  text-align: center;
}

/* Align text to the right */
.text-end {
  text-align: right;
}

/* Default text alignment */
.text-start {
  text-align: left;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

.text-light {
  color: var(--clr-light);
}

::selection {
  background-color: var(--clr-primary); /* Highlight color */
  color: var(--clr-dark); /* Text color */
}

select::picker-icon {
  display: none;
}

select,
select::picker(select) {
  appearance: base-select;
  background-color: #191a14;
  color: var(--clr-light);
}

select::picker(select) {
  background-color: #191a14;
  color: var(--clr-light);
  padding: var(--pd-xs);
  border-radius: 6px;
  border: 1px solid var(--clr-primary) !important;
  scrollbar-width: thin;
  margin: var(--mr-xs) 0;
}

select option:hover {
  background-color: var(--clr-primary) !important;
  color: #191a14;
  border-radius: 0.6rem;
}
