a.simple-tip {
  position: relative;
  text-decoration: none;
  color: #0645ad;
}

a.simple-tip::after {
  content: attr(data-tip); /* use data-tip for the text */
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  bottom: 120%;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 13px;
  background: #111;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease, transform .12s ease;
  z-index: 10;
}

a.simple-tip:hover::after,
a.simple-tip:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.search-bar {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 0.5rem;
}
.search-bar input,
.search-bar select {
    border: none;
    box-shadow: none;
}
.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    box-shadow: none;
}
.search-btn {
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
}
.hospital-item-slider .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}



.hospital-block {
    display: flex;
    flex-direction: column;    /* allows content to stack */
    justify-content: space-between;
    width: 100%;
    background: #fff;          /* optional for visibility */
    border: 1px solid #eee;    /* optional for styling */
    border-radius: 8px;
    overflow: hidden;
}

.hospital-block h5 {
  min-height: 3em;        /* reserve at least 2 lines of space */
  line-height: 1.5em;
  overflow: hidden;       /* prevents it from pushing card taller */
  text-overflow: ellipsis;
  display: -webkit-box;   /* for multi-line ellipsis */
  -webkit-line-clamp: 2;  /* show only 2 lines */
  -webkit-box-orient: vertical;
  text-align: center
}

 .select2-container--default .select2-selection--single {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border: none;
  box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow 
{
    display: none;
}