
/* SEARCH BOX WRAPPER – GOLD BORDER + ROUNDED */
.search-page .search-box-wrapper {
  background: #1a1a1a !important;           /* DARK BG BEHIND */
  padding: 0.9px !important;
  border-radius: 50px !important;
  border:  solid #555 !important;     /* GOLD BORDER */
  transition: all 0.4s ease !important;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5) !important;
}

/* FOCUS PE GLOW */
.search-page .search-box-wrapper:focus-within {
  border-color: #f8fc05 !important;    
  box-shadow: 0 1px 40px rgba(235, 255, 56, 0.2) !important;
  transform: scale(1.02) !important;
}

/* INPUT FIELD – DARK BLUE BG */
.search-page .input-group .form-control {
  background: #282828 !important;           /* DEEP BLUE */
  border: none !important;
  color: #ccc !important;
  font-size: 1rem !important;
  height: 56px !important;
  border-radius: 50px 0 0 50px !important;
  padding: 0 1.2rem !important;
}

/* INPUT PLACEHOLDER */
.search-page .input-group .form-control::placeholder {
  color: #888 !important;
  font-style: italic;
}

/* SEARCH BUTTON – GOLD */
.search-page .input-group .btn {
  background: #f8fc05 !important;           /* GOLD BG */
  border: none !important;
  border-radius: 0 50px 50px 0 !important;
  width: 60px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* BUTTON ICON */
.search-page .input-group .btn i {
  color: #000 !important;
  font-size: 1.3rem !important;
  font-weight: bold !important;
}

/* HOVER PE BUTTON */
.search-page .input-group .btn:hover {
  background: #fff !important;           /* ORANGE HOVER */
  border:  solid #f8fc05 !important;  
}

.search-page .search-box-wrapper {
  margin-top: 0px !important;    /* TOP MARGIN */
  margin-bottom: 10px !important; /* BOTTOM MARGIN */
}

  /* NO SCOPED – FULL CONTROL */
  .search-page .result-box {
    height: 140px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    border: 1.5px solid #000 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
  }

  .search-page .result-box > div:first-child {
    width: 30% !important;
    min-width: 100px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #101010 !important;
  }

  .search-page .result-box img {
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
  }

  /* CONTENT SIDE – YE DIKHEGA */
  .search-page .result-box > div:last-child {
    width: 70% !important;
    height: 100% !important;
    padding: 0.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #202020 !important;   /* DIKHEGA */
    transition: background 0.3s ease !important;
  }

  .search-page .result-box:hover > div:last-child {
    background: #303030 !important;
  }

  .search-page .result-box:hover {
    transform: translateY(-4px);
    border-color: #000 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .search-page .url-hover { 
    color: #1cc6ff  !important; 
  }
  .search-page .title-hover a { 
    color: #fff !important; 
  }
  .search-page .title-hover a:hover { 
    color: #f8fc05 !important; 
  }

  /* MOBILE */
  @media (max-width: 576px) {
    .search-page .result-box {
      height: 140px !important;
    }
    .search-page .result-box > div:first-child {
      width: 35% !important;
      min-width: 90px !important;
    }
    .search-page .result-box > div:last-child {
      width: 65% !important;
      padding: 0.5rem !important;
    }
  }
