/* ================================
   EB Ajax Search - Cross-browser Glass Style by ChatGPT
   ================================ */
.search-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.search-wrapper:hover {
    background: rgba(255,255,255,0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.search-form {
    display: flex;
    align-items: center;
    padding: 8px 16px;
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    outline: none;
}

.search-form button {
    background: linear-gradient(135deg, #0066ff, #5aa9ff);
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.search-form button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0253d1, #3d8de1);
}

