/* Estilos para o formulário de pesquisa mobile */
.mobile-search-form {
    display: none; /* Oculto por padrão */
    padding: 15px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e7e7e7;
}

.mobile-search-form .form-inline {
    width: 100%;
}

.mobile-search-form .input-group {
    width: 100%;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-search-form .form-control {
    height: 40px;
    flex: 1;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.mobile-search-form .btn {
    height: 40px;
    min-width: 80px;
    padding: 0 15px;
    background-color: #ffff00; /* Amarelo */
    color: #008000; /* Verde */
    font-weight: bold;
    border: none;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mobile-search-form .btn:hover {
    background-color: #e6e600; /* Amarelo mais escuro no hover */
}

/* Media query para mostrar apenas em dispositivos móveis */
@media (max-width: 767px) {
    .mobile-search-form {
        display: block !important;
    }
}