.ac-search-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
}

#ac-search {
    width: 100%;
    height: 46px;                 /* malo viši */
    padding: 0 48px 0 18px;
    border: 1px solid #ddd;
    border-radius: 22px;          /* malo manji round */
    background: #f4f4f4;
    color: #333;
    font-size: 16px;
    transition: all 0.2s ease;
}

#ac-search:focus {
    outline: none;
    border-color: #ff7a00;
    background: #fff7f0;          /* blaga narandžasta pozadina */
}

.ac-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg fill='orange' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.ac-live-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    display: none;
    z-index: 99;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.ac-live-results a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.ac-live-results a:hover {
    background: #fff4e6;
}

.ac-live-results img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 5px;
}
