.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 4px 14px;
    box-shadow: 0 2px 10px rgba(127, 116, 228, 0.06);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: background 0.25s;
}

.search-container img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    background: rgba(127, 116, 228, 0.06);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(127, 116, 228, 0.08);
    padding: 3px;
}

.search-container img:hover {
    transform: scale(1.1);
}

#search-web {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #7f74e4;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

#search-web:focus {
    border-color: #a39de8;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 4px 20px rgba(127, 116, 228, 0.3);
    width: 87%;
    transition: width 0.3s ease, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

#search-web::placeholder {
    color: #b8b5ff;
    font-weight: 400;
}

/* better styling */
.app {
    padding: 0px;
    border-radius: 50px;
    width: 112.5px;
    transition: transform 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* app image style */
.app img {
    border-radius: 34px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.185); 
    z-index: 99998px;
}

.app:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.title {
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

.center-box p {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  #search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    pointer-events: none;
  }

  #search-suggestions.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .suggestion-item {
    padding: 10px 18px;
    cursor: pointer;
    color: #fff;
    transition: all 0.15s ease;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    margin: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
  }

  .suggestion-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .suggestion-item.highlighted {
    background: rgba(255, 255, 255, 0.25);
  }

  .suggestion-loading {
    padding: 16px;
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    font-size: 13px;
  }

  #search-suggestions::-webkit-scrollbar {
    width: 4px;
  }

  #search-suggestions::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  #search-suggestions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }