/* Voice Search Button Styles */
#voice-search-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#voice-search-btn svg {
    width: 24px;
    height: 24px;
    fill: #5f6368;
}

#voice-search-btn.recording svg {
    fill: #d93025;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.search-container #searchForm {
    border: 1px solid #dfe1e5;
    border-radius: 30px;
    overflow: hidden; /* Ensures child elements conform to border radius */
}

.search-container #searchForm:hover,
.search-container #searchForm:focus-within {
    box-shadow: 0 1px 25px #4ccccc69;
  
}