
.a1-search-container {
    position: relative;
    --search-width: 60%;
}

.a1-search-toggle {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.a1-search-box {
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 10px;
}

.a1-search-box.hidden {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
}

.a1-search-box.visible {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.a1-search-box form {
    display: flex;
    gap: 8px;
}

.a1-search-box input[type="text"] {
    padding: 8px;
    width: var(--search-width);
    border: 1px solid #ccc;
    border-radius: 4px;
}

.a1-search-box button {
    padding: 8px 12px;
    background-color: #ffc107;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.a1-search-suggestions {
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
}

.a1-search-suggestions a {
    display: block;
    padding: 6px 10px;
    text-decoration: none;
    color: #333;
}

.a1-search-suggestions a:hover {
    background-color: #f1f1f1;
}
