.dms-search-wrapper {
    max-width: 700px;
    margin: 30px auto;
    position: relative;
}

.dms-search-container {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 40px;
    padding: 5px;
    background: #fff;
}

.dms-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 16px;
}

.dms-voice-btn,
.dms-search-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dms-voice-btn {
    background: orange;
    color: #fff;
    margin-right: 5px;
}

.dms-search-btn {
    background: #4f46e5;
    color: #fff;
}

.dms-search-btn i,
.dms-voice-btn i {
    font-size: 16px;
}

.dms-live-box {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    z-index: 99999;
    display: none;
    pointer-events: auto;
}

.dms-live-results li a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.dms-live-results li a:hover {
    background: #f3f4f6;
}

.dms-voice-btn.listening {
    background: red !important;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}