.fifimg img {
	width 30px;
	height: 30px;
	float: left;
	margin-right: 15px;
}

select{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  width: 100%;       /* Or any specific value like 300px */
  height: 45px;      /* Set a fixed height for perfect alignment */
  padding: 5px 10px; /* Optional: adds internal spacing */
  color: #000000;
}

select,
::picker(select) {
  appearance: base-select;
}


label {
  width: fit-content;
  align-self: center;
}

select {
  flex: 1;
}

select {
  border: 2px solid #dddddd;
  background: #ffffff;
  padding: 10px;
  transition: 0.4s;
}

select:hover,
select:focus {
  background: #ffffff;
}
select::picker-icon {
  color: #999999;
  transition: 0.4s rotate;
}
select:open::picker-icon {
  rotate: 180deg;
}
::picker(select) {
  border: none;
}
option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;

  border: 2px solid #dddddd;
  background: #eeeeee;
  padding: 10px;
  transition: 0.4s;
}
option:first-of-type {
  border-radius: 8px 8px 0 0;
}

option:last-of-type {
  border-radius: 0 0 8px 8px;
}

::picker(select) {
  border-radius: 8px;
}

option:not(option:last-of-type) {
  border-bottom: none;
}
option:nth-of-type(odd) {
  background: white;
}

option:hover,
option:focus {
  background: plum;
}
option .icon {
  font-size: 1.6rem;
  text-box: trim-both cap alphabetic;
}
selectedcontent .icon {
  display: none;
}
option:checked {
  font-weight: bold;
}
option::checkmark {
  order: 1;
  margin-left: auto;
  content: "☑️";
}
@supports not (appearance: base-select) {
  body::before {
    color: black;
    background-color: wheat;
    position: fixed;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    padding: 1rem 0;
    z-index: 1;
  }
}

.searchDescription {
    background-color: #E4EAF1;
    border-radius: 0px;
    padding: 20px;
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
    text-justify: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
