.voice-search-icon {
    position: fixed;
    z-index: 9999;
    border-radius: 50%;
}

.voice-search-icon.bottom-right {
    bottom: 105px;
    right: 20px;
}

.voice-search-icon.bottom-left {
    bottom: 20px;
    left: 20px;
}
.voice-search-icon.top-right {
    top: 20px;
    right: 20px;
}
.voice-search-icon.top-left {
    top: 20px;
    left: 20px;
}
.floating-voice-search {
    position: relative;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    overflow: hidden;
    background: #efefef;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-voice-search svg {
    z-index: 1;
}

.voice-search-wave {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 2;
}
#voice-search-button i {
    font-size: 24px;
}
.dt-container select.dt-input {
    padding: 4px 15px;
    background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 0px top 60%;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.voice-search-button--active svg,
.voice-search-button--active i {
    animation: pulse 1s infinite;
    transform-origin: center;
}
.voice-tooltip {
    position: absolute;
    bottom: 100%;
    left: 60%;
    transform: translateX(-60%);
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}
.voice-search-wave {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    gap: 3px;
    z-index: 999;
}

.voice-search-wave span {
    width: 4px;
    height: 20px;
    background: #000;
    border-radius: 2px;
    animation: wave 1.2s infinite ease-in-out;
}

.voice-search-wave span:nth-child(1) { animation-delay: 0s; }
.voice-search-wave span:nth-child(2) { animation-delay: 0.2s; }
.voice-search-wave span:nth-child(3) { animation-delay: 0.4s; }
.voice-search-wave span:nth-child(4) { animation-delay: 0.6s; }
.voice-search-wave span:nth-child(5) { animation-delay: 0.8s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

@media (max-width: 480px) {
    .voice-search-icon.bottom-right {
        bottom: 105px;
        right: 15px;
    }
}